仅发布适用于 iPod 设备的应用程序

发布于 2024-11-01 15:17:15 字数 164 浏览 1 评论 0 原文

我必须在应用程序商店中发布一个应用程序,但我希望该应用程序仅在 iPod 和 iPad 中可见,而不是 iPhone。我看到像 Whatsapp 这样的应用程序适用于 iPhone,但不适用于 iPod 和 iPad。 我在 plist 或 itunesconnect 中找不到任何内容来配置它。有办法吗?谢谢!

I have to publish an app in the appstore but I want that only visible in ipods and ipads, NOT iphones. I saw apps, like whatsapp, are available for iphone and not for ipod and ipads.
I couldn't find anything in the plist or in itunesconnect to configure this. Is there a way? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

离不开的别离 2024-11-08 15:17:15

在您的应用程序 plist 内,将 telephony 添加到您的 UIRequiredDeviceCapability(必需的设备功能),该功能需要是字典类型。 telephony 需要设置为 NO,以禁止您的应用程序在具有电话功能的设备 (iPhone) 上运行。

查看声明 iOS 应用程序编程指南

Inside of your applications plist add telephony to your UIRequiredDeviceCapabilities(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

念﹏祤嫣 2024-11-08 15:17:15

修改您的 Info.plist 以包含 UIRequiredDeviceCapability 键。向其传递一个字典,其中 BOOL NO 作为 telephony 键。

Modify your Info.plist to include the UIRequiredDeviceCapabilities key. Pass it a dictionary with a BOOL NO for the telephony key.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文