Is there any way to limit my iOS app be available for Gen 2 iPads or better and iPhone 4 or better in the app store? I can do this in Android so I imagine their is an iOS equivalent.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t restrict your app to specific devices, but you can configure it to require certain hardware features by including the
UIRequiredDeviceCapabilitieskey in your Info.plist.This is an array of strings, you can find details about which keys are available in the iOS Application Programming Guide.
By including “front-facing-camera”, for example, you would essentially restrict your app to iPhone 4, iPad 2 and latest-gen iPod touch.