I need to develop an app who support iOS 4 - iOS 7, is it possible to do it on XCode 5.0.2 on Mavericks?
The lowest deployment target xcode provide me is iOS 6.
I need to develop an app who support iOS 4 - iOS 7, is it possible to do it on XCode 5.0.2 on Mavericks?
The lowest deployment target xcode provide me is iOS 6.
Try this , You will get the deployement Target till from lowerEnd . Its mainly due to the >XCode 5.0 choses by default architecture as including 64-bit this only supports >IOS 6.0
iPhone 5S is powered by A7 64bit processor
. From apple docsYes, supporting iOS4 is possible, the problem is supporting ARMv6 (iPhone 3G and iPod Touch 2G). To support ARMv6, you need iOS SDK 5.x with is available in Xcode 4.4. But you also need to support the widescreen iPhone resolution, so you need to use two different Xcode versions for it
In Project > Target > Build Settings > Architectures:
Then, you can change the deployment target to lower versions (just type
4.0
or4.3
in the Deployment Target box)But why do you want to target iOS 4 still?