简体   繁体   中英

iOS app compatibility issue

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 ?

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.

在此处输入图片说明

please remove

<string>armv7</string>

from the array in

UIRequiredDeviceCapabilities

in info.plist

and submit the app for review on iTunes Connect.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM