Reputation: 9149
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
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
Upvotes: 2