简体   繁体   中英

Windows 10 UWP targeting windows 10 mobile only

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:

存储中的Windows 10设备系列选择

Take a look at the MSDN guide page , this is quoted directly from there.

You may not want your app to run on a wide range of devices; perhaps it's specialized for, say, a desktop PC or for an Xbox console. In that case you can choose to target your app at one of the child device families. For example, if you target the desktop device family, the APIs guaranteed to be available to your app include the APIs inherited from the universal device family plus the APIs that are particular to the desktop device family.

This is one of the interesting things about UWP. We have the option to target tons of devices (phones, tablets, desktops, Xbox, and HoloLense) with the same code base. This is a big sell if you are currently deciding whether to build for Windows 10 vs other platforms. However, yes, you can decide if you only want a certain application to be on mobile (although the term mobile is now so ambiguous) or desktop.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM