-->

iOS app compatibility issue

2019-01-12 07:28发布

问题:

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.