iTunes Connect 需要 3.5 英寸屏幕截图,仅限 arm64 应用程序
iTunes Connect requiring 3.5-inch Screenshots for arm64 only App
我正在尝试提交一个仅支持 arm64 的应用程序,它是在 Xcode7 开发的。但是,将二进制文件上传到 iTunes Connect 后,当我尝试提交时显示以下错误消息:
You must upload screenshots for 3.5-inch and 4-inch Retina displays., Your binary indicates support for iPhone/iPod touch. You must provide an iPhone/iPod touch screenshot.
我更改了 Info.plist 文件中的要求,以及架构和有效架构。有什么我想念的吗?我只想支持4+英寸的显示器,我相信你没有armv7就不能有armv7s,所以我只规定了arm64。
更新:
最后,我刚刚为 iPhone 4s 创建了单独的故事板,并以编程方式在视图控制器中选择了它。
在不了解更多关于您的应用程序的情况下,您可能会收到该消息的原因有很多。
- 您的应用表明它支持iPhone/iPod触摸某处(plist、目标构建等)
- 您已限制设备要求:
Important: All device requirement changes must be made when you submit
an update to your binary. You are permitted only to expand your device
requirements. Submitting an update to your binary to restrict your
device requirements is not permitted. You are unable to restrict
device requirements because this action will keep customers who have
previously downloaded your app from running new updates.
如果您支持 iPhone,您将必须支持 4 英寸视网膜显示屏。由于 iOS 9 可用于 iPhone 4,因此您需要支持它。我有同样的问题:
可能需要这样做的另一个原因是,正如我刚刚发现的那样:在 4 英寸设备上查看 App Store 上的应用程序时,它实际上使用了列表中的 3.5 英寸屏幕截图。甚至当我打电话给 Apple 的开发人员支持时,他们似乎也不理解这一点,然后当他们发现这是真的时感到惊讶。
我正在尝试提交一个仅支持 arm64 的应用程序,它是在 Xcode7 开发的。但是,将二进制文件上传到 iTunes Connect 后,当我尝试提交时显示以下错误消息:
You must upload screenshots for 3.5-inch and 4-inch Retina displays., Your binary indicates support for iPhone/iPod touch. You must provide an iPhone/iPod touch screenshot.
我更改了 Info.plist 文件中的要求,以及架构和有效架构。有什么我想念的吗?我只想支持4+英寸的显示器,我相信你没有armv7就不能有armv7s,所以我只规定了arm64。
更新: 最后,我刚刚为 iPhone 4s 创建了单独的故事板,并以编程方式在视图控制器中选择了它。
在不了解更多关于您的应用程序的情况下,您可能会收到该消息的原因有很多。
- 您的应用表明它支持iPhone/iPod触摸某处(plist、目标构建等)
- 您已限制设备要求:
Important: All device requirement changes must be made when you submit an update to your binary. You are permitted only to expand your device requirements. Submitting an update to your binary to restrict your device requirements is not permitted. You are unable to restrict device requirements because this action will keep customers who have previously downloaded your app from running new updates.
如果您支持 iPhone,您将必须支持 4 英寸视网膜显示屏。由于 iOS 9 可用于 iPhone 4,因此您需要支持它。我有同样的问题:
可能需要这样做的另一个原因是,正如我刚刚发现的那样:在 4 英寸设备上查看 App Store 上的应用程序时,它实际上使用了列表中的 3.5 英寸屏幕截图。甚至当我打电话给 Apple 的开发人员支持时,他们似乎也不理解这一点,然后当他们发现这是真的时感到惊讶。