0

我刚刚在“Google Play”上发布了我的应用程序,但我注意到有问题的应用程序出现在智能手机上浏览“Google Play”,但没有出现在我的平板电脑 Samsung 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>
4

2 回答 2

1

将此添加到您的清单文件中:

在移动设备以及 Teblet 中运行您的应用程序(因此,下面的代码将为您工作)。

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

声明应用程序仅适用于平板电脑

屏幕尺寸的额外信息


而不是上面你也可以做下面的方式:

示例 1

清单声明<uses-sdk android:minSdkVersion="3">但不包含<supports-screens>元素。

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

示例 2

清单声明<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4">但不包含<supports-screens>元素。

结果:除非应用其他过滤器,否则 Google Play 将向所有设备上的用户显示该应用。

示例 3

清单声明<uses-sdk android:minSdkVersion="4">但不包含<supports-screens>元素。

结果:除非应用其他过滤器,否则 Google Play 将向所有用户展示该应用。

于 2013-06-04T09:57:33.377 回答
0

像这样添加 targetSdkVersion 声明

<uses-sdk
        android:minSdkVersion="7"
        android:targetSdkVersion="17" />
于 2013-06-04T10:06:50.450 回答