Android App is not showing for tablet users of Google play store(Android 应用程序未向 Google Play 商店的平板电脑用户显示)
本文介绍了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 商店的平板电脑用户显示
猜你喜欢
- URL编码Swift iOS 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- UITextView 内容插图 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01