Home > database >  Remove IPAD screenshot option for Publishing IOS App
Remove IPAD screenshot option for Publishing IOS App

Time:11-15

I am trying to publishing my app in app store. My app is only for IOS Mobile. But when I try to added app screenshot, I found there IPad option. enter image description here

This will disable iPad support and remove the iPad screenshots tab from App Store Connect.

CodePudding user response:

No way to do that without removing support for ipad users

CodePudding user response:

Unfortunately there is no possibility for the developer to decide directly on which devices his app works.

In general, an iPhone app will also work on iPads with black borders if it is not adapted. Your app will not appear on the iPad App Store only if the app contains features that are not supported by iPad. For example, applications with HealthKit do not appear for iPad because this is not supported.

To answer ultimately, it is not possible to remove that tab from the App Store, even if your app is not optimized for iPad. If you really don't want your app to be available for iPad, then you will need to implement a framework that is not supported by iPad. Take a look at the list of devices capabilities.

  • Related