Removing 3G from supported devices

前端 未结 2 796
余生分开走
余生分开走 2021-01-15 02:19

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

相关标签:
2条回答
  • 2021-01-15 02:51

    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>
    
    0 讨论(0)
  • 2021-01-15 03:01

    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.

    0 讨论(0)
提交回复
热议问题