I developed an iOS app for iOS 5+ that is currently compiled for 32 bits. I'm using Xcode 6.1 and I've my project's Architectures
value set to $(ARCHS_STANDARD_32_BIT)
in Build Settings
. If I change this to Standard architectures
, Xcode says that I have to change the Deployment target
from iOS 5.0 to at least iOS 6.1.
I've read in several places that it is possible to generate builds for both 32 and 64 bits. I need to keep this app to be backwards-compatible from iOS 5.0, but I don't find the way to achieve this. Maybe have I misunderstood and it is needed to generate two different .ipa
files? How is this handled when submitting to iTunes Connect
?
Thanks