Xcode Set Compatible Devices

后端 未结 1 1184
谎友^
谎友^ 2021-01-06 17:54

I have released my first app on the iOS App Store a few days ago and told my friends to download it. However, they have told me that it is not compatible with the iPod Touch

相关标签:
1条回答
  • 2021-01-06 18:45

    The most likely cause is that you did not build for armv6. This is a common issue usually caught in debugging, but since you did not test on these devices you did not catch it.

    If you want to add support for armv6 devices, like iPod touch 2nd gen & iPhone 3g, then in addition to setting your deployment target like you have done you must also:

    1) Add armv6 to the Architectures field:

    enter image description here

    2) Remove armv7 from the requirements in the info.plist:

    enter image description here

    3) Test to ensure compatibility with these devices. Please do not ignore this step.

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