Android app showing in Google Play for Phone but not for Google Play for Tablets

梦想的初衷 提交于 2019-12-13 06:52:43

问题


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:


  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



来源:https://stackoverflow.com/questions/28240860/android-app-showing-in-google-play-for-phone-but-not-for-google-play-for-tablets

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!