iTunes Connect: Excluding iPad From Supported Devices

前端 未结 3 2005
耶瑟儿~
耶瑟儿~ 2021-02-19 06:41

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 iPho

相关标签:
3条回答
  • 2021-02-19 06:52

    I don't see a good reason to exclude iPad since iPhone apps will run in emulated mode in iPad after all. It's the same situation as a 3.x firmware running apps compiled from 2.x SDK.

    To restrict at device level, you add the UIDeviceFamily key, but this doesn't support excluding iPad (just excluding iPhone).

    0 讨论(0)
  • 2021-02-19 06:59

    The way to indicate that an application should only run on iPhone is to specify your application as an iPhone type application, rather than universal. Open your project (in XCode), click on the project name at the top of the Project Navigator sidebar, select the target, go to the summary tab, and change "Devices" to iPhone.

    When you submit it, it will only be run in emulator mode on iPads, thus getting around any issues.

    0 讨论(0)
  • 2021-02-19 07:04

    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.

    0 讨论(0)
提交回复
热议问题