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 商店的平板电脑用户显示
基础教程推荐
- 为什么姜饼模拟器方向卡在应用程序中? 2022-01-01
- Android Volley - 如何动画图像加载? 2022-01-01
- iOS - UINavigationController 添加多个正确的项目? 2022-01-01
- UIImage 在开始时不适合 UIScrollView 2022-01-01
- SwiftUI-ScrollViewReader的ScrollTo不滚动 2022-01-01
- 如何将图像从一项活动发送到另一项活动? 2022-01-01
- 如何比较两个 NSDate:哪个是最近的? 2022-01-01
- Xcode UIView.init(frame:) 只能在主线程中使用 2022-01-01
- navigationItem.backBarButtonItem 不工作?为什么上一个菜单仍然显示为按钮? 2022-01-01
- Play 商店的设备兼容性问题 2022-01-01
