iPhone、应用程序发布、更改设备要求
几个月前我在应用商店发布了一个应用程序。 它最初只为 iPhone 制作(因为我想这样做),现在我想也为 iPod Touch 发布它。
我需要做什么才能使 iphone 应用程序也可用于 iPod touch?
当我更新应用程序(在 ipod 上测试的新版本)时,我无法更改标有“设备要求”的下拉列表的值,
我不想创建另一个具有相同内容和相同代码的应用程序只是为了更改该值!
非常感谢
I have released an app in the appstore months ago.
It was first made only for iPhone (because I wanted to do so), now I would like to release it also for the iPod Touch.
What I have to do to make the iphone app available to ipod touch too?
When I update the app (new version tested on the ipod) I cannot change the value of the dropdown labeled "Device Requirements"
I don't want to make another app with the same content and same code just to change that value!
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我会联系 Apple 开发人员支持并告诉他们您希望进行更改。在许多情况下,他们可以覆盖这样的事情。
I would contact Apple Developer Support and tell them you would like the change. In many cases, they can override things like this.
这很奇怪。无论如何,除了联系支持人员之外,请记住,您还需要修改 -info.plist 文件,添加“所需的设备功能”(UIRequiredDeviceCapativity) 键。
基本上,您可以在此处定义您的应用程序使用的硬件类型,例如 wifi、核心位置、指南针、加速计等。然后,这将用于自动区分能够运行您的应用程序的设备和不能运行您的应用程序的设备。
这还不是强制性的,但如果您在没有正确配置 plist 文件的情况下提交针对 iPhone 和 iPod Touch 第二代的应用程序,Apple 会警告您。
This is weird. Anyway, besides contacting the support, bear in mind that you also need to modify your -info.plist file adding the "Required device capabilities" (UIRequiredDeviceCapabilities) key.
Basically, you define here what kind of hardware your application uses, such as wifi, core location, compass, accelerometer etc. This is then used to automatically distinguish a device capable of running your app from another which is not.
This is not yet mandatory, but Apple will warn you if you submit an application targeting the iPhone and iPod Touch 2nd generation without a properly configured plist file.
我找到了发布应用程序更新的解决方案。
I've come to a solution releasing an update of the app.