Android应用程序在Google Play store的平板电脑上不可见

Android应用程序在Google Play store的平板电脑上不可见,android,google-play,android-manifest,android-permissions,Android,Google Play,Android Manifest,Android Permissions,有人能告诉我为什么谷歌play商店的平板电脑看不到这个应用程序吗。 我正在使用GCM、Gmap、摄像头,并将文件存储在SD卡上 谷歌play store、sim卡和simless上的主要平板电脑看不到这一点。 我确实知道google play store mask应用程序来自与清单权限不匹配的设备,但我相信在主要三星设备上不存在任何权限 请查看下面的舱单 <manifest xmlns:android="http://schemas.android.com/apk/res/android"

有人能告诉我为什么谷歌play商店的平板电脑看不到这个应用程序吗。 我正在使用GCM、Gmap、摄像头,并将文件存储在SD卡上

谷歌play store、sim卡和simless上的主要平板电脑看不到这一点。 我确实知道google play store mask应用程序来自与清单权限不匹配的设备,但我相信在主要三星设备上不存在任何权限

请查看下面的舱单

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app"
android:versionCode="15"
android:versionName="2.4.3" >

<uses-sdk
    android:minSdkVersion="11"
    android:targetSdkVersion="19" />

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

<!-- GOOGLE CLOUD MESSAGING SECION -->
<permission
    android:name="com.example.app.permission.C2D_MESSAGE"
    android:protectionLevel="signature" />

<uses-permission android:name="com.example.app.permission.C2D_MESSAGE" />

<!-- App receives GCM messages. -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />

<!-- GCM connects to Google Services. -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- GCM requires a Google account. -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<!-- Keeps the processor from sleeping when a message is received. -->
<uses-permission android:name="android.permission.WAKE_LOCK" />
<!-- END GOOGLE CLOUD MESSAGING SECION -->

<permission android:name="com.example.app.permission.MAPS_RECEIVE" />

<uses-permission android:name="com.example.app.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

<!-- Required OpenGL ES 2.0. for Maps V2 -->
<uses-feature android:glEsVersion="0x00020000" />

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

<application
    android:allowBackup="false"
    android:allowClearUserData="false"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:theme="@style/AppTheme" >

    <!-- GOOGLE CLOUD MESSAGING SECION -->
    <receiver
        android:name="com.example.app.GCMBroadcastReceiver"
        android:permission="com.google.android.c2dm.permission.SEND" >
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            <action android:name="com.google.android.c2dm.intent.REGISTRATION" />

            <category android:name="com.example.app" />
        </intent-filter>
    </receiver>

    <service
        android:name="com.example.app.GCMRegistrationService"
        android:enabled="true"
        android:exported="false" />
    <!-- END GOOGLE CLOUD MESSAGING SECTION -->

    <activity
        android:name=".SplashActivity"
        android:screenOrientation="landscape"
        android:theme="@android:style/Theme.Black.NoTitleBar"
        android:windowSoftInputMode="adjustPan" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

</application>


如果平板电脑的android版本如下 android:minSdkVersion=“11”


然后谷歌playstore。将不会在平板电脑上显示应用程序

可能是没有摄像头、GPS等的设备。尝试将您的一些权限设置为可选权限,看看这是否会有所改善。我已经在BETA版上发布了应用程序,并检查了支持设备,它显示许多设备可以支持应用程序,但这些设备上看不到应用程序。我以测试人员的身份使用google帐户登录了受支持的设备(Samsung Tab)。该设备还配有摄像头和GPS。我在BETA版上发布的新版本仍然不可见。如果您以测试用户身份登录并转到PC上的Google Play Store链接,是否会显示您的设备不受支持?更改在服务器上传播大约需要一个小时。你等了吗?我已经完成了所有的步骤,比如点击链接成为测试者。然而,我使用的谷歌帐户已经附加了各种各样的设备,所以哪些支持,哪些不支持,仍然是一个谜,我仍然会尝试其他方式。昨天在PLAY store上发布的应用程序已经有20个小时了。它也在其中一台设备moto x上显示我,但不是在平板电脑上。所以你的意思是说我必须添加android:minSdkVersion=“12”而不是android:minSdkVersion=“11”?不是。首先检查表android版本,然后如果平板电脑android版本低于android:minSdkVersion=“11”,那么google play store将不会显示该应用程序,示例:-表android操作系统版本10,然后是你的应用程序minSDK版本11..然后你在PlayStore中看不到该应用程序谢谢,但所有设备都有11+以上的最新操作系统。并且应该在play store上可见。