问题
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" />
回答1:
Add 7" and 10" screenshots to your application description on Google Play.
Remove
android.permission.READ_PHONE_STATE
permission, because most of tablet have not got GSM moduleOR
try to add this
<uses-feature android:name="android.hardware.telephony" android:required="false" />
Look this about hardware requirements
来源:https://stackoverflow.com/questions/28240860/android-app-showing-in-google-play-for-phone-but-not-for-google-play-for-tablets