从支持的设备中删除 3G

发布于 2024-10-01 09:36:24 字数 661 浏览 4 评论 0原文

我正在尝试找出如何删除 AppStore 中我的应用程序支持的 iPhone 3G 设备。我向 Apple 支持人员发送了电子邮件,要求他们在 reqs 部分中更新它,他们回复说我需要更新我的 UIRequiredDeviceCapability 密钥。好吧,它是用 : 提交的

    <key>UIBackgroundModes</key>
    <array>
            <string>location</string>
    </array>

,并

    <key>UIRequiredDeviceCapabilities</key>
    <array>
            <string>telephony</string>
            <string>location-services</string>
            <string>gps</string>
    </array>

在我的 plist 中。

有谁知道我需要设置什么确切的键/值才能使 3G 支持不在 AppStore 中列出?

I'm trying to figure out how to remove the iPhone 3G as a supported device for my application in the AppStore. I emailed Apple support asking for them to update it in the reqs section and they responded saying I need to update my UIRequiredDeviceCapabilities keys. Well, it was submitted with :

    <key>UIBackgroundModes</key>
    <array>
            <string>location</string>
    </array>

and

    <key>UIRequiredDeviceCapabilities</key>
    <array>
            <string>telephony</string>
            <string>location-services</string>
            <string>gps</string>
    </array>

in my plist.

Does anyone know what the exact key/value I'd need to set in order for 3G support to not be listed in the AppStore?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暗藏城府 2024-10-08 09:36:25

如果你想支持3GS和4,你可以把armv7放在UIRequiredDeviceCapability中。

<key>UIRequiredDeviceCapabilities</key>
<array>
    <string>telephony</string>
    <string>location-services</string>
    <string>gps</string>
    <string>armv7</string>
</array>

If you want to support the 3GS and the 4, you can put armv7 in UIRequiredDeviceCapabilities.

<key>UIRequiredDeviceCapabilities</key>
<array>
    <string>telephony</string>
    <string>location-services</string>
    <string>gps</string>
    <string>armv7</string>
</array>
倾其所爱 2024-10-08 09:36:25

目前,您无法明确阻止一种设备类型使用您的应用程序。您可能需要设备没有的功能,但您的应用程序可能不会使用它们,这可能会导致后台和内存使用问题。

Currently, you cannot explicitly prevent one device type from using your app. You would need to require features that the device doesn't have, but they may not be used by your application, possibly causing background and memory usage issues.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文