从支持的设备拆卸3G [英] Removing 3G from supported devices

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

问题描述

我试图找出如何去除的iPhone 3G作为我在AppStore的应用程序支持的设备。我给苹果的支持,要求他们在请求数部分更新它,他们回答说我需要更新我的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。

有谁知道确切的键/值我需要为了设置支持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天全站免登陆