The app is for iPhone only, not iPod. (like Whatsapp)

I have been working with search for several days, for example when we went to the AppStore on the iPod and tried to install ' Whatsapp . It shows a popup with the message:

"This app is not compatible with your device." 

      

enter image description here

So my question is, being a Developer , how do I do this? Where can this be installed somewhere inside our app build or itunesconnect or somewhere else? Howw?

Any suggestions would be helpful. :)

+3


source to share


2 answers


You can do this by changing the required device capabilities. For example, an application requiring telephony will only work on the iPhone. Check the link for Apple iOS device compatibility



+3


source


The correct way to do this is to include a YES telephony key for the UIRequiredDeviceCapabilities entry (dictionary), that is, only telephony capable devices can use the application.

Also, see the full link on what keys are available for use with UIRequiredDeviceCapabilities.



Secreenshot

+4


source







All Articles