如何在向Apple Store提交iOS应用程序时添加特定要求?
我已准备好向 Apple Store 提交我的 iOS 应用程序。但我想添加具体要求,例如“应用程序需要 iOS 4 或更高版本、iphone 4、ipod touch 4g、ipad、相机和多任务支持”。我不知道我应该在哪里设置这些要求。
我设置了基础sdk &部署目标为4.0。
任何帮助表示赞赏。谢谢。
I am ready to submit my iOS application to Apple Store. But I want to add specific requirements such as "app requires iOS 4 or greater ,iphone 4 , ipod touch 4g,ipad ,camera & multitasking support". I don't know where should I set these requirements.
I set the base sdk & deployement target to 4.0.
Any help is appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要将
UIRequiredDeviceCapability
键添加到info.plist
文件并设置still-camera
值。这里是所有可能的 iDevice 要求的表格。
至于目标 iOS 版本和后台,将部署目标设置为至少 4.0 是正确的。
You need to add
UIRequiredDeviceCapabilities
key toinfo.plist
file and setstill-camera
value.Here is a table of all possible iDevice requirements.
As for target iOS version and backgrounding it's right to set deployment target at least 4.0.
如果您需要 iOS 4,那么您已经拥有多任务支持。据我所知,任何用户都无法禁用它。
不过相机比较棘手。在应用说明中非常清楚表明您的应用需要相机。并且该警告(“您必须有相机”)应该阻止使用非相机设备的人进行下载。
If you require iOS 4, you already have multitasking support. There's no way (that I know of) for any user to disable that.
Camera is trickier though. Make it very clear in your app description that your app requires a camera. And that caveat ("you must have a camera") should keep non-camera device using people from downloading.
我得到了它。布里加迪尔是对的。当您将UIRequiredDeviceCapability键设置为info.plist文件时&设置所需的值,然后它会自动列出所需的设备。请参阅 itunes_connect_developer_guide.pdf 中的附录 C:设备兼容性表。
I got it. Brigadir is right. When you setUIRequiredDeviceCapabilities key to info.plist file & set the required values then it will automatically list the devices required. See Appendix C: Device Compatibility Matrix in itunes_connect_developer_guide.pdf.