I have an app I just published to the Play Store, that's showing up as "This app is incompatible with all of your devices" when I try to access it from tablets that lack telephony. It installs just fine on actual Android phones.
Here's the thing - we want users to be able to install the app on tablets and other devices that don't have phones, and to simply have the telephone functions not work. But if I include the CALL_PHONE permission in the manifest, the Play Store simply won't allow it to be installed.
<uses-permission android:name="android.permission.CALL_PHONE" />
How do I get Google Play to allow an app that asks for the CALL_PHONE permission to install on a device that doesn't have a phone?