Sergey Grishchev
Sergey Grishchev

Reputation: 12051

Xcode 5 deployment target limited only to iOS 7

What should be done for me to have the deployment target lower that 7.0 in my project preferences? Now any new project I create using Xcode 5 can only be deployed to iOS 7.0. That's how it looks:
enter image description here

Upvotes: 22

Views: 21992

Answers (5)

aksBD
aksBD

Reputation: 199

  1. Click Project
  2. Targets > Build Setting >Deployment Tab
  3. Change ios Deployment target See In Image

Upvotes: 1

Erhan Demirci
Erhan Demirci

Reputation: 4209

I had the same problem. I solved it with these steps:

  1. project > Build Setting

  2. Deployment tab > iOS Deployment Target

so:

enter image description here

Upvotes: 3

maethorr
maethorr

Reputation: 594

Had the same issue. All I did was to change Architectures to Standard architectures (armv7,armv7s) - exclude the 64 bit. See screenshot.enter image description here

Upvotes: 22

Jordan Montel
Jordan Montel

Reputation: 8247

You can follow my answer here to use the iOS 6 SDK on XCode 5 but you need to have XCode 4 installed on your Mac.

But I think you can just set the Deployment Target to iOS6, in the configuration of the project :

enter image description here

Upvotes: 1

Jack
Jack

Reputation: 16865

You can directly type a different target (5.0, 5.1, etc) into the text box :)

The only thing to note is you will need to change the architecture to exclude ARM64 if you go below 7.0.

Upvotes: 50

Related Questions