Is it possible to create an app iOS 4 - iOS 7 compatible with Xcode 5.0.2 on Mavericks?

ios, ios4, osx-mavericks, xcode

Solution

In Project > Target > Build Settings > Architectures:

change the Architectures from Standard Architectures (including 64-bit) to Standard Architectures ,or if you want to support older devices, type `armv6 armv7 armv7s` in Others

Then, you can change the deployment target to lower versions (just type `4.0` or `4.3` in the Deployment Target box)

But why do you want to target iOS 4 still?

Problem

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.

Original source

Related problems