Carpetfizz
Carpetfizz

Reputation: 9149

How do I set the versions of iOS supported in my app?

My app is in the app store, and I realized that it won't work on iOS5 and lower devices due to the usage of AutoLayout. Is there a way I can restrict the download to work only for iOS6+ devices in iTunesConnect? Or do I have to resubmit the binary?

Upvotes: 4

Views: 83

Answers (1)

Gabriele Petronella
Gabriele Petronella

Reputation: 108091

You have to set the Deployment Target parameter in the target settings of your project. Here's an example that sets it to >=5.0

enter image description here

Upvotes: 2

Related Questions