Eric
Eric

Reputation: 672

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.

See screenshots here

Where do I have to configure it correctly ?

Upvotes: 3

Views: 216

Answers (2)

Binoy jose
Binoy jose

Reputation: 471

please remove

<string>armv7</string>

from the array in

UIRequiredDeviceCapabilities

in info.plist

and submit the app for review on iTunes Connect.

Upvotes: 0

Roy K
Roy K

Reputation: 3319

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

Upvotes: 3

Related Questions