How to install iOS versions in my application?

My application is in the application store, and I realized that it will not work on iOS5 and lower devices due to the use of AutoLayout. Is there a way to restrict downloads to work only for iOS6 + devices in iTunesConnect? Or do I need to resubmit the binary?

+4
source share
1 answer

You must set the deployment target option to the target settings of your project. Here is an example that sets it to> = 5.0

enter image description here

+2
source

Source: https://habr.com/ru/post/1487170/


All Articles