Xcode Set Compatible Devices

亡梦爱人 提交于 2019-12-01 00:12:37

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:

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

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!