Skip to content Skip to sidebar Skip to footer

My Android App Is Not Available For Tablets On Google Play

I made an android app for ordering a cab. I uploaded it on goole play and everything was fine until i tried to find the app over a tablet. I cannot find the app on google play. I g

Solution 1:

Issue is in "android.permission.CALL_PHONE" permission that might not be available for tablets. You should add additional entry that shows that is not absolutely required feature and then handle that scenario in your code when you are accessing those features.

<uses-featureandroid:name="android.hardware.telephony"android:required="false"/>

Android documentation for <uses-feature>

Solution 2:

You should place screenshots for the Tablet Portion as well as the requirements needed by the Google Play for Tablets.

Solution 3:

You should put all requirements for tablet and create .xml file for tablet in app layout folder and Screenshot for tablet. see more from documentation

Post a Comment for "My Android App Is Not Available For Tablets On Google Play"