仅发布适用于 iPod 设备的应用程序
我必须在应用程序商店中发布一个应用程序,但我希望该应用程序仅在 iPod 和 iPad 中可见,而不是 iPhone。我看到像 Whatsapp 这样的应用程序适用于 iPhone,但不适用于 iPod 和 iPad。 我在 plist 或 itunesconnect 中找不到任何内容来配置它。有办法吗?谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的应用程序 plist 内,将
telephony
添加到您的UIRequiredDeviceCapability
(必需的设备功能),该功能需要是字典类型。telephony
需要设置为 NO,以禁止您的应用程序在具有电话功能的设备 (iPhone) 上运行。查看声明 iOS 应用程序编程指南
Inside of your applications plist add
telephony
to yourUIRequiredDeviceCapabilities
(Required device capabilities) which needs to be of type dictionary.telephony
needs to be set to NO to prohibit your application on devices that have telephony capabilities (iPhone).Check out the Declaring the Required Device Capabilities of the iOS Application Programming Guide
修改您的 Info.plist 以包含 UIRequiredDeviceCapability 键。向其传递一个字典,其中
BOOL
NO
作为telephony
键。Modify your Info.plist to include the UIRequiredDeviceCapabilities key. Pass it a dictionary with a
BOOL
NO
for thetelephony
key.