Reputation: 105
I have a uwp app with a non flighted submission only targeting Xbox devices. Can I add a new package that only targets windows 10 desktop? I need two different packages targeting two different devices under the one product. I know this can't be achieved by in flight packages but wondering if there was another way of doing this.
Upvotes: 1
Views: 93
Reputation: 105
Figured it out. In manifest the default Name = Windows.Universal
so added
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="xxxxxxxx" MaxVersionTested="xxxxxxxxxx" />
</Dependencies>
to App for desk top and
<Dependencies>
<TargetDeviceFamily Name="Windows.Xbox" MinVersion="xxxxxx" MaxVersionTested="xxxxxxx" />
</Dependencies>
to app for Xbox and when uploading to dev centre the devices are targeted by correct packages.
Upvotes: 1