iOS app compatibility issue

久未见 提交于 2019-12-17 14:29:22

问题


I'm making an application with Swift 2.1, Xcode 7.1.1. I want it to be at least compatible with iPhone 4S and 5C.

I configured my project settings with armv7 architecture, info.plist, but when I publish my build, I only have arm64 defined in iTunes connect.

Where do I have to configure it correctly ?


回答1:


Make sure Build Active Architecture Only is set to NO (at least for release), or else it will use the architecture of the connected device at the time you create the build.




回答2:


please remove

<string>armv7</string>

from the array in

UIRequiredDeviceCapabilities

in info.plist

and submit the app for review on iTunes Connect.



来源:https://stackoverflow.com/questions/34116570/ios-app-compatibility-issue

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