简体   繁体   English

Google Play商店的平板电脑用户无法使用Android应用

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

My android app is not found through tablets in google play store. 在Google Play商店中无法通过平板电脑找到我的Android应用。 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. 我已经在平板电脑上测试了apk的正常工作。 But when i published my app on google play, i wasnt able to see my app on my tablet from google play? 但是,当我在Google Play上发布我的应用程序时,我无法从Google Play在平板电脑上看到我的应用程序吗? Kindly Help!! 请帮助!! thanx in advance... 提前谢谢...

please add following line. 请添加以下行。 It should solve your problem !! 它应该解决您的问题!

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

AFAIK there are only two ways your APP will not show up on playstore AFAIK只有两种方式,您的APP将不会在Playstore上显示

  1. OS version is less than minsdk version supported by app. 操作系统版本小于应用程序支持的minsdk版本。 I don't think this is the issue for you as you are using minsdk as 8. 我认为这不是问题,因为您使用的是minsdk 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. 对我来说,没有GPS的手机无法访问此应用。 You could try 你可以试试

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Google Play商店上平板电脑未显示Android App - Android App is not showing for a tablet on Google play store Android应用未在Google Play中针对平板电脑显示 - Android app not showing for tablet in google play 该应用未在平板电脑设备的Google Play商店中列出 - App is not listed in Google play store for tablet devices Android App未显示在Tablet Play商店中 - Android App not displayed in Tablet Play Store 应用未在 Google Play 商店中显示 - App not showing in Google Play Store 使用 Google Play 商店为外部用户发布私有 Android 应用程序 - Publish private Android app for external users using Google Play Store 多个APK,适用于Google TV和Android手机/平板电脑的Play商店上的单个应用列表 - Multiple apks, single listing of app for Google TV and Android Phone/Tablet on Play Store Android应用未在Google Play商店搜索中显示(不在所有手机中) - Android App not showing in Google play store search(Not in all mobiles) 禁用来自App Store和Google Play商店的iOS和Android App,并向用户发送自定义消息 - Disable iOS and Android App from App store and google play store with custom message to users 我的应用程序更新未显示在Google Play商店中 - My app updates not showing in the Google Play Store
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM