Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to change the universal app to iphone only once it is uploaded to app store?

I am trying to upload new version of my app which is only compatible for iphone. Earlier it was uploaded as universal app. Is it Possible to disable the IPAD compatibility during the next upload to the App store?

Anyone have idea about this ?

like image 260
Shibili Avatar asked Feb 04 '23 06:02

Shibili


2 Answers

Hopefully this will help.

iOS App change universal to iPhone only

Developers who wish to issue updates, but remove device support, have three choices:

Fix their app so that it can work on the devices they originally set out to support. Target a newer version of iOS that requires a newer device. Remove their app from the store, and upload the new app with a different bundle ID.

Switch universal app to iPhone only app

  1. Remove this App from app store
  2. Create new bundle & use it to your new app version
  3. Deploy App to the store

For more ideas visit the link above.

like image 92
Zღk Avatar answered Feb 10 '23 23:02

Zღk


UIRequiredDeviceCapabilities would help you.

Put telephony value like this in info.plist (IPhone specific...)

Of course you need submit your app again.

UIRequiredDeviceCapabilities

UIRequiredDeviceCapabilities

UIRequiredDeviceCapabilities (Array or Dictionary - iOS) lets iTunes and the App Store know which device-related features an app requires in order to run. iTunes and the mobile App Store use this list to prevent customers from installing apps on a device that does not support the listed capabilities.

enter image description here

like image 43
Hwangho Kim Avatar answered Feb 10 '23 22:02

Hwangho Kim