Android 为什么我的申请没有出现在“中”;“谷歌游戏市场”;平板电脑的功能?

Android 为什么我的申请没有出现在“中”;“谷歌游戏市场”;平板电脑的功能?,android,tablet,Android,Tablet,我刚刚在“Google Play”上发布了我的应用程序,但我注意到该应用程序出现在从智能手机浏览“Google Play”时,但没有出现在我的平板电脑三星Galaxy Tab2 10.1的“Google Play”上。为什么会出现这个问题 这是我的舱单: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <manifest xmlns:android="http://schemas.android.com/apk/re

我刚刚在“Google Play”上发布了我的应用程序,但我注意到该应用程序出现在从智能手机浏览“Google Play”时,但没有出现在我的平板电脑三星Galaxy Tab2 10.1的“Google Play”上。为什么会出现这个问题

这是我的舱单:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    android:versionCode="32" android:versionName="4.7" 
    package="it.app.my">

<uses-sdk android:minSdkVersion="7"/>

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

<uses-feature android:name="android.hardware.vibrate" android:required="false"/>
<uses-feature android:name="android.hardware.wifi" android:required="false"/>

<compatible-screens>
    <!-- all small size screens -->
    <screen android:screenSize="small" android:screenDensity="ldpi" />
    <screen android:screenSize="small" android:screenDensity="mdpi" />
    <screen android:screenSize="small" android:screenDensity="hdpi" />
    <screen android:screenSize="small" android:screenDensity="xhdpi" />
    <!-- all normal size screens -->
    <screen android:screenSize="normal" android:screenDensity="ldpi" />
    <screen android:screenSize="normal" android:screenDensity="mdpi" />
    <screen android:screenSize="normal" android:screenDensity="hdpi" />
    <screen android:screenSize="normal" android:screenDensity="xhdpi" />
    <!-- all small size screens -->
    <screen android:screenSize="large" android:screenDensity="ldpi" />
    <screen android:screenSize="large" android:screenDensity="mdpi" />
    <screen android:screenSize="large" android:screenDensity="hdpi" />
    <screen android:screenSize="large" android:screenDensity="xhdpi" />
    <!-- all normal size screens -->
    <screen android:screenSize="xlarge" android:screenDensity="ldpi" />
    <screen android:screenSize="xlarge" android:screenDensity="mdpi" />
    <screen android:screenSize="xlarge" android:screenDensity="hdpi" />
    <screen android:screenSize="xlarge" android:screenDensity="xhdpi" />
</compatible-screens>


<application android:debuggable="true" 
    android:icon="@drawable/icon" 
    android:label="@string/app_name">
        <activity android:label="@string/app_name" 
            android:name=".MainActivity" 
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen">


    <intent-filter>
        <action android:name="android.intent.action.MAIN"/>
        <category android:name="android.intent.category.LAUNCHER"/>
    </intent-filter>
</activity>

</application>

</manifest>

将其添加到清单文件中:

在移动设备上运行您的应用程序以及Teblet(因此,下面的代码将适用于您)。

<supports-screens        
    android:largeScreens="true"
    android:normalScreens="true"
    android:resizeable="true"
    android:smallScreens="true"
    android:xlargeScreens="true" />


除上述方法外,您还可以按以下方法进行操作:

示例1

清单声明
,不包含
元素

结果:Google Play不会向小屏幕设备的用户显示应用程序,但会向普通和大屏幕设备的用户显示应用程序,除非应用其他过滤器

示例2

清单声明
,不包含
元素

结果:Google Play将向所有设备上的用户显示应用程序,除非应用其他过滤器。 示例3

清单声明
,不包含
元素


结果:Google Play将向所有用户显示该应用程序,除非应用其他筛选器。

添加如下targetSdkVersion声明

<uses-sdk
        android:minSdkVersion="7"
        android:targetSdkVersion="17" />


它似乎与您的平板电脑不兼容。Google play提供了过滤器。。检查我的应用程序也将在我的平板电脑上工作,因为我已经测试过了。因此,我希望通过在代码中插入与各种显示器的兼容性,它能出现在我编辑问题的每个设备的所有“google play”上。为了在所有设备上获得最大支持,我所做的是正确的吗?在做任何事情之前,请阅读ans和我在回复中发布的所有文章。