从支持的设备中删除 3G [英] Removing 3G from supported devices

查看:20
本文介绍了从支持的设备中删除 3G的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试弄清楚如何在 AppStore 中删除 iPhone 3G 作为我的应用程序支持的设备.我给 Apple 支持发送电子邮件,要求他们在 reqs 部分更新它,他们回复说我需要更新我的 UIRequiredDeviceCapabilities 键.好吧,它是通过以下方式提交的:

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>

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

在我的 plist 中.

in my plist.

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

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?

推荐答案

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

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>

这篇关于从支持的设备中删除 3G的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆