Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 411
Blacky Avatar asked Dec 02 '13 11:12

Blacky


Video Answer


1 Answers

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

Type it

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?

like image 119
Raptor Avatar answered Oct 25 '22 00:10

Raptor