Reputation: 2066
I have to publish an app in the appstore but I want that only visible in ipods and ipads, NOT iphones. I saw apps, like whatsapp, are available for iphone and not for ipod and ipads. I couldn't find anything in the plist or in itunesconnect to configure this. Is there a way? Thanks!
Upvotes: 4
Views: 415
Reputation: 57179
Inside of your applications plist add telephony
to your UIRequiredDeviceCapabilities
(Required device capabilities) which needs to be of type dictionary. telephony
needs to be set to NO to prohibit your application on devices that have telephony capabilities (iPhone).
Check out the Declaring the Required Device Capabilities of the iOS Application Programming Guide
Upvotes: 4
Reputation: 30846
Modify your Info.plist to include the UIRequiredDeviceCapabilities key. Pass it a dictionary with a BOOL
NO
for the telephony
key.
Upvotes: 3