应用仅在应用商店中无法用于 ipad wifi
App unavailable for ipad wifi only on the appstore
我刚刚注意到我们的应用程序在应用程序商店中仅适用于 ipad wifi。
在应用程序页面的兼容性部分,我可以阅读:"Available on iphone, ipad 2 Wifi + cellular, iPad Wifi + cellular (3rd generation), etc"
我如何允许 ipad 仅使用 wifi 下载我的应用程序?
转到项目的 info.plist 文件,并检查 Required device capabilities
字段。您可能在此处提到了 gps
和 location-services
键。
设备功能字段列出了您的应用程序需要的必需设备功能,在此基础上它才可用于兼容设备。阅读文档中的 Device Compatibility 部分。
上述 gps
键的文档说明:
Include this key if your app requires (or specifically prohibits) the
presence of GPS (or AGPS) hardware when tracking locations. (You
should include this key only if you need the higher accuracy offered
by GPS hardware.) If you include this key, you should also include the
location-services key. You should require GPS only if your app needs
location data more accurate than the cellular or Wi-fi radios might
otherwise provide.
基于此密钥,没有专用 GPS 模块(内置于蜂窝模块中)的设备无法使用该应用程序。
如果您的应用可以 运行 没有超精确的 gps,那么您应该删除此密钥。
我刚刚注意到我们的应用程序在应用程序商店中仅适用于 ipad wifi。 在应用程序页面的兼容性部分,我可以阅读:"Available on iphone, ipad 2 Wifi + cellular, iPad Wifi + cellular (3rd generation), etc" 我如何允许 ipad 仅使用 wifi 下载我的应用程序?
转到项目的 info.plist 文件,并检查 Required device capabilities
字段。您可能在此处提到了 gps
和 location-services
键。
设备功能字段列出了您的应用程序需要的必需设备功能,在此基础上它才可用于兼容设备。阅读文档中的 Device Compatibility 部分。
上述 gps
键的文档说明:
Include this key if your app requires (or specifically prohibits) the presence of GPS (or AGPS) hardware when tracking locations. (You should include this key only if you need the higher accuracy offered by GPS hardware.) If you include this key, you should also include the location-services key. You should require GPS only if your app needs location data more accurate than the cellular or Wi-fi radios might otherwise provide.
基于此密钥,没有专用 GPS 模块(内置于蜂窝模块中)的设备无法使用该应用程序。
如果您的应用可以 运行 没有超精确的 gps,那么您应该删除此密钥。