I’m about to publish a App that requires GPS.
How can I prevent users to install it on a iPod-Touch and iPad w/o GPS?
//Stefan
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.
There’s a
UIRequiredDeviceCapabilitieskey in theInfo.plistfile for this. It can be either a dictionary or an array. In your case you can make it an array and add a single string item that contains thegpsstring. More information in the iOS Application Programming Guide (or Google for the key name). You should read the App Programming Guide anyway, it contains a lot of important information.