我的应用程序从“平板电脑"中消失了.谷歌播放,但仍可用于手机

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.

这篇关于我的应用程序从“平板电脑"中消失了.谷歌播放,但仍可用于手机的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)