Is it possible to target a uwp app just for Windows 10 mobile? I mean can we configure in the manifest just to work with phone and not tablet or desktop? Also, the users should not be able to search for the app on the store from a tablet, desktop etc but only from a phone.
There is an entry in Package.appxmanifest
specifying, which device families your application targets. Unfortunately it doesn't seem to be exposed in the editor, therefore you'll need to edit the XML directly. This is the entry, you need to change:
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
</Dependencies>
Replace Windows.Universal
with Windows.Mobile
. Check the reference documentation for more information.
Also, when you are preparing the submission for the store, you can select which device families you want your application to be available for:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With