如何在 App Store 中要求 iPad 2 或 iPhone 4S
我们正在构建一个需要 iPad 2 或 iPhone 4S 的 RAM、GPU 和内核的应用程序。有没有什么方法可以配置该应用程序,使其无法在应用程序商店中供硬件较低的用户使用?
我知道我只能构建armv7,这就消除了真正旧的东西。看起来我可能需要一台静态相机(即使我们不使用它)来消除 iPad 1(尽管这感觉像是一个黑客)。但这并不能阻止它远离 iPhone 4 或 Touch 4。
有什么建议吗?
We are building an app that requires the RAM, GPU, and cores of an iPad 2 or iPhone 4S. Is there any way to configure the app so that it is not available in the app store to users of lesser hardware?
I know that I can build armv7 only, and that eliminates the really old stuff. It looks like I could require a still camera (even though we don't use it), to eliminate the iPad 1 (although that feels like a hack). But that doesn't keep it off iPhone 4 or Touch 4.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不幸的是,没有
UIRequiredDeviceCapability
字符串仅过滤配备 A5 处理器的设备。您可以查看新版iTunes Connect 开发者指南中的“设备兼容性矩阵”,得到的最接近结果是新版
bluetooth-le
键,根据其对蓝牙 4.0 低功耗通信的支持,仅筛选 iPhone 4S。 iPad 2 没有这个硬件(尽管可以肯定下一代会有),所以它不满足这个所需的功能。我对此感到有点惊讶,因为有新的 OpenGL ES 扩展仅在 iPad 2 和 iPhone 4S 上可用,而且我可以看到构建需要这些功能的应用程序。我不确定您如何指定这一点,因此我针对这样的密钥提交了增强请求 (rdar://10356232)。
Unfortunately, there is no
UIRequiredDeviceCapabilities
string that only filters for devices with the A5 processor.The closest you get, looking at the "Device Compatibility Matrix" in the new iTunes Connect Developer Guide, is the new
bluetooth-le
key that filters for just the iPhone 4S based on its support for Bluetooth 4.0 Low Power communication. The iPad 2 doesn't have this hardware (although it's safe to bet the next generation will), so it doesn't satisfy this required capability.I'm a little surprised by this, because there are new OpenGL ES extensions which are only available on the iPad 2 and iPhone 4S, and I could see building applications that require those capabilities. I'm not sure how you'd specify that, so I filed an enhancement request (rdar://10356232) for a key like this.
现在,随着 iOS 6 的发布,这已成为可能。通过要求 iOS 6,您可以有效地要求仅支持 iPhone 4+ 和 iPad 2+。
This is now possible with the release of iOS 6. By requiring iOS 6, you can effectively require that only iPhone 4+ and iPad 2+ are supported.