Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I restrict my app for iPhone's only, excluding iPod touch?

How can I restrict my app for iPhone's only, excluding iPod touch ?

I don't want my app available on iPod Touch, is there a property in the info.plist I can use to specify this or is this something I will encounter during the setup on itunesconnect ?

like image 257
Daniel Avatar asked Apr 04 '12 15:04

Daniel


People also ask

Can I restrict an app on iPhone?

With Content & Privacy Restrictions in Screen Time, you can block or limit specific apps and features on your child's device. You can also restrict the settings on your iPhone, iPad, or iPod touch for explicit content, purchases and downloads, and privacy.

How do I restrict apps on my iPhone for my child?

Go to Settings > General > Restrictions and tap Enable Restrictions. Every time you do this you'll be asked to set a 4-digit passcode and enter it a second time. Be sure it's something you can remember but your kid won't figure out.


1 Answers

You could add gps as a required device capability simply to exclude devices without the GPS hardware, which would rule out iPod touches.

Edit: Actually, the correct way to do this is to include for the UIRequiredDeviceCapabilities entry (a dictionary), the telephony key with a value of YES, meaning, only devices that support telephony can use the app.

Also, check out the complete reference of what keys are available for use with UIRequiredDeviceCapabilities.

like image 122
Mark Granoff Avatar answered Oct 11 '22 15:10

Mark Granoff