简体   繁体   English

该应用在某些主要使用Android 4.1.1版的平板电脑设备上的Play商店中不可用

[英]App is not available on Play Store in some tablet devices mostly with Android version 4.1.1

App is not available on Play Store in some tablet devices. 该应用在某些平板电脑设备上的Play商店中不可用。

I searched about this issue but no solution solved my problem. 我搜索了此问题,但没有解决方案解决了我的问题。 I can't figure out why my app is not available on Play Store on some tablet devices. 我不知道为什么我的应用程序在某些平板电脑设备上的Play商店中不可用。 But when I try to search it in Google Play website using the browser, it is available and I was able to install it. 但是,当我尝试使用浏览器在Google Play网站中搜索它时,它就可以安装了。 I tried adding tag and android:required="false" attribute as what others recommend but this doesn't solve the problem. 我尝试添加tag和android:required =“ false”属性作为其他人的建议,但这不能解决问题。 This is the manifest of my app. 这是我的应用程序的清单。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.companyname.appname"
android:versionCode="30"
android:versionName="1.0.20" >

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

<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.CAMERA" />

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

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcer"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.Light.NoTitleBar" >
    <activity
        android:name="com.companyname.appname.MainActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustPan|stateHidden" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.companyname.appname.ViewLogFragment"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustPan|stateHidden" />

    <receiver android:name="com.companyname.background.BootCompleteReceiver" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>
    <receiver android:name="com.companyname.background.ShutDownReceiver" >
        <intent-filter>
            <action android:name="android.intent.action.ACTION_SHUTDOWN" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>
    <receiver android:name="com.companyname.background.TimeChangeReceiver" >
        <intent-filter>
            <action android:name="android.intent.action.TIME_SET" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>
    <receiver android:name="com.companyname.background.DateChangeReceiver" >
        <intent-filter>
            <action android:name="android.intent.action.DATE_CHANGED" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>
    <receiver android:name="com.companyname.background.TimeZoneChangeReceiver" >
        <intent-filter>
            <action android:name="android.intent.action.TIMEZONE_CHANGED" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>

    <service android:name="com.companyname.background.SyncAndUpdateService" />
    <service android:name="com.companyname.background.AutoSendBackUpService" />
</application>

</manifest>

Actually there's no error on the manifest. 实际上,清单上没有错误。 It just took 3 days for all the devices to see my app. 所有设备仅用了3天时间即可看到我的应用。 When I uploaded my app on the Google Play, after 2-3 hours it is already available for some devices but it took 3 days for other devices. 当我将应用程序上传到Google Play时,2-3小时后,某些设备已经可以使用它,而其他设备则花了3天的时间。 There's no issue on the android version or on the manifest. android版本或清单上没有问题。 Just make sure you check out Filters on Google Play before uploading your app on the Play Store as what SirChristian123 adviced. 只需确保您先按照Google SirPlaytian123的建议在Google Play上过滤过滤器,然后再将应用上传到Play商店。

I actually does not seems something wrong with the code, You should be careful with the camera feature like Henry said because Google is not going to show it if a device does not support a camera. 我的代码实际上似乎没有什么问题,您应该像亨利所说的那样小心使用摄像头功能,因为如果设备不支持摄像头,则Google不会显示该功能。 Sometimes it can confuses Google though. 有时它会使Google感到困惑。

Check this out and see if something in your code that you did not posted here is the problem: 检查一下,看看您的代码中未在此处发布的内容是否有问题:

This is the official information about Filters in Google Play: 这是有关Google Play过滤器的官方信息:

http://developer.android.com/google/play/filters.html http://developer.android.com/google/play/filters.html

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM