0

The app is showing for Phones but not for Google Play for Tablets. Here is the Manifest code.

package="com.samplecode.app"

android:versionCode="1" 
android:versionName="1.1" >         

<uses-sdk 
    android:minSdkVersion="8"  
    android:targetSdkVersion="21" /> 

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
Johnson
  • 1
  • 2
  • Have you read and followed the Google's recommendations for tablets: https://developer.android.com/distribute/essentials/quality/tablets.html – Morrison Chang Jan 30 '15 at 17:09
  • Basically im not from tech background, im trying to add the code that shows the app in "Google Play for Tablets". – Johnson Jan 30 '15 at 17:13

1 Answers1

0
  1. Add 7" and 10" screenshots to your application description on Google Play.

  2. Remove android.permission.READ_PHONE_STATE permission, because most of tablet have not got GSM module

    OR

    try to add this <uses-feature android:name="android.hardware.telephony" android:required="false" />

    Look this about hardware requirements

Kirill Shalnov
  • 2,216
  • 1
  • 19
  • 21