我试图弄清楚如何将 iPhone 3G 作为我的应用程序在 AppStore 中的受支持设备删除。我给 Apple 支持发送了电子邮件,要求他们在 reqs 部分更新它,他们回复说我需要更新我的 UIRequiredDeviceCapabilities 密钥。好吧,它是通过以下方式提交的:
<key>UIBackgroundModes</key>
<array>
<string>location</string>
</array>
和
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>telephony</string>
<string>location-services</string>
<string>gps</string>
</array>
在我的列表中。
有谁知道我需要设置什么确切的键/值才能使 3G 支持不在 AppStore 中列出?