iOS app compatibility issue

2019-01-12 07:45发布

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.

See screenshots here

Where do I have to configure it correctly ?

2条回答
小情绪 Triste *
2楼-- · 2019-01-12 08:09

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.

enter image description here

查看更多
劳资没心,怎么记你
3楼-- · 2019-01-12 08:12

please remove

<string>armv7</string>

from the array in

UIRequiredDeviceCapabilities

in info.plist

and submit the app for review on iTunes Connect.

查看更多
登录 后发表回答