gpt4 book ai didi

Android 应用在平板电脑的 Google Play 商店中不可见

转载 作者:行者123 更新时间:2023-12-02 09:44:10 25 4
gpt4 key购买 nike

任何人都可以建议我为什么这个应用程序在 google play store 上的平板电脑上不可见。
我正在使用 GCM、Gmap、Camera 并将文件存储在 sdcard 上。

google play store、sim 和 simless 上的主要平板电脑不可见。
我确实知道来自设备的 google play store mask 应用程序与 list 权限不匹配,但是我相信主要三星设备上不存在任何权限。

请在下面找到 list 。

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

最佳答案

如果平板安卓版本如下
安卓:m​​inSdkVersion="11"

然后 Google playstore .will 不会在平板电脑中显示应用程序

关于Android 应用在平板电脑的 Google Play 商店中不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24281970/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com