Android App is not showing for tablet users of Google play store(Android 应用程序未向 Google Play 商店的平板电脑用户显示)
问题描述
在 google play store 中无法通过平板电脑找到我的 android 应用程序.应用清单如下:
My android app is not found through tablets in google play store. 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" />
我已经在我的平板电脑上测试了 apk,它工作正常.但是当我在 google play 上发布我的应用程序时,我无法从 google play 在我的平板电脑上看到我的应用程序?请帮助!提前谢谢...
I have tested the apk on my tablet its working fine. But when i published my app on google play, i wasnt able to see my app on my tablet from google play? Kindly Help!! thanx in advance...
推荐答案
请添加以下行.它应该可以解决您的问题!
please add following line. It should solve your problem !!
<supports-screens android:resizeable="true" android:anyDensity="true" />
这篇关于Android 应用程序未向 Google Play 商店的平板电脑用户显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Android 应用程序未向 Google Play 商店的平板电脑用户显示
基础教程推荐
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iOS4 创建后台定时器 2022-01-01
