Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iTunes Connect: Excluding iPad From Supported Devices

Tags:

iphone

ipad

I have just uploaded my first app to iTunes Connect and noticed that my list of supported devices is appearing as follows...

Device Requirements: Compatible with iPhone, iPod touch, and iPad.

I've developed specifically for the iPhone and iPod Touch and have not yet done any testing on the iPad simulator. I therefore don't want the app submission testers to try running my app on an iPad and rejecting it because of some minor issue.

I've looked at setting the required device capabilities in my info.plist, but that doesn't appear to allow me to restrict at a device level.

Is this a by-product of building using the 3.1.3 SDK? Are apps built using this SDK automatically upscaled to work on the iPad?

like image 488
mmccomb Avatar asked May 04 '10 18:05

mmccomb


1 Answers

You can't restrict the app to not work on the iPad. Backwards compatibility with all iPhone apps is a feature of the iPad. Your app will run in a 100% frame or in an optional 2x mode depending on user preference.

iPhone OS apps that link against the 2.x or 3.x framework and test clean on the iPhone and iPod touch should work w/o any trouble on the iPad.

If you tested on the iPod, taking into account the lack of cell radio, camera, etc., you should be totally fine.

like image 198
Hunter Avatar answered Oct 07 '22 22:10

Hunter