I’m sure you know about Whatsapp. Whatsapp was not available in iPad AppStore.
To achieve this, change Info.plist file, right-click -> Open as -> Source Code

Then search for UIRequiredDeviceCapabilities, most probably you will see

Info.plist

1
2
3
4
5
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
<string>telephony</string> <!-- ADD THIS LINE -->
</array>

It means this app only support for those device which can call.

References: