My app disappeared from quot;tabletquot; google play but still available for phone(我的应用程序从“平板电脑中消失了.谷歌播放,但仍可用于手机)
问题描述
我的应用在 Google Play 上发布了几个月.拥有手机和平板电脑的人可以下载它.令人惊讶的是,有时在过去 2 周内,google play 的某些内容发生了变化,我的应用仅适用于手机(使用平板电脑搜索时找不到).
I have my app published for couple of months on Google play. People with phones and tablets are able to download it. Surprisingly, sometimes in the last 2 weeks, something with google play changes and my app is only available for phone (I can't find it when I search using a tablet).
知道是否有更改或我需要实施吗?我没有在清单文件中指定任何设备屏幕尺寸,所以应该没问题,对吧?
Any idea if there is something changed or I need to implement? I don't specify any device screen size in my manifist file so it should be fine ,right?
非常感谢
编辑.下面是清单文件.这个应用程序支持平板电脑但突然停止的事情
EDIT. Below is the manifest file. The thing that this application was supporting tablet but all of the sudden it stopped
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myApp"
android:versionCode="5"
android:versionName="3.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.android.vending.CHECK_LICENSE" />
<uses-permission android:name="android.permission.VIBRATE" />
........
////Activities are here
..
</manifest>
推荐答案
我找到了解决方案我使用了支持屏幕标签,并将 xlarge 屏幕显式设置为 true.我联系了谷歌,他们说这是他们正在调查的问题.
I found the solution I used the support screen tag and I explicitly set the xlarge screen to true. I contacted Google and they said it is a issue they are investigating.
这篇关于我的应用程序从“平板电脑"中消失了.谷歌播放,但仍可用于手机的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我的应用程序从“平板电脑"中消失了.谷歌播放,但仍可用于手机


- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
- UITextView 内容插图 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- URL编码Swift iOS 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01