Android App is not showing for tablet users of Google play store

时光总嘲笑我的痴心妄想 提交于 2019-12-31 04:37:10

问题


My android app is not found through tablets in google play store. the App manifest is as :

 <supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:smallScreens="true"
        android:xlargeScreens="true" />

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

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />


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

I have tested the apk on my tablet its working fine. But when i published my app on google play, i wasnt able to see my app on my tablet from google play? Kindly Help!! thanx in advance...


回答1:


please add following line. It should solve your problem !!

<supports-screens android:resizeable="true" android:anyDensity="true" />



回答2:


AFAIK there are only two ways your APP will not show up on playstore

  1. OS version is less than minsdk version supported by app. I don't think this is the issue for you as you are using minsdk as 8.
  2. Device needs some feature that tablet does not support. This will most likely be the culprit.

Before jumping to conclusions your best option is to browse that app from browser. Here you can see if the app is compatible with list of your devices. Here you would see reason as to why your app is not compatible. Attaching a screenshot from similar issue I faced -

For me it looks like phones not having GPS dont have access to this app. You could try

<uses-feature android:name="android.hardware.location.gps" android:required="false" />


来源:https://stackoverflow.com/questions/19537760/android-app-is-not-showing-for-tablet-users-of-google-play-store

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