Apk不会出现在某些设备的谷歌播放中

时间:2014-04-04 10:19:34

标签: android

我在清单中的谷歌播放中上载了我的Android应用程序我有这些权限:

    <compatible-screens>
     <!-- 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" />

    <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" />


</compatible-screens>

但是在尝试从我的平板电脑下载时可能会出现错误?

2 个答案:

答案 0 :(得分:2)

在AndoridManifiest.xml文件中写下

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

答案 1 :(得分:0)

平板电脑被认为是xlarge。这是reff文档:have a look at the "Range of screens supported section"