平板电脑的Google Play商店中看不到Android App [英] Android App is not visible on Google Play store for tablets

查看:110
本文介绍了平板电脑的Google Play商店中看不到Android App的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

任何人都可以建议我为什么Google Play商店上的平板电脑看不到该应用程序. 我正在使用GCM,Gmap,相机,并将文件存储在sdcard上.

Can anyone suggest me why this app is not visible for tablets on google play store. I am using GCM, Gmap, Camera and storing files on sdcard.

在Google Play商店,SIM卡和simless上的主要平板电脑不可见. 我确实知道该设备的Google Play商店屏蔽应用程序与清单权限不匹配,但是我认为主要的三星设备上不存在任何权限.

It is not visible for major tablets on google play store, sim and simless. I do know that google play store mask app from device which not match with manifest permissions however I believe that there no any permission which is not exist on major samsung devices.

请在下面的清单中找到.

Please find below manifest.

<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>

推荐答案

如果下面的Tablet Android版本 android:minSdkVersion ="11"

If the Tablet android version below android:minSdkVersion="11"

然后Google Playstore不会在平板电脑上显示应用

Then Google playstore .will not show app in the tablet

这篇关于平板电脑的Google Play商店中看不到Android App的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆