Android App与设备不兼容

时间:2017-03-23 01:52:50

标签: android

您好我在playstore中有一个应用程序,并且我在清单中添加了以下属性,以避免此应用程序安装在平板电脑中。

   <!-- For Phone Only-->
<compatible-screens>
    <!-- all small size screens -->
    <screen
        android:screenDensity="ldpi"
        android:screenSize="small" />
    <screen
        android:screenDensity="mdpi"
        android:screenSize="small" />
    <screen
        android:screenDensity="hdpi"
        android:screenSize="small" />
    <screen
        android:screenDensity="xhdpi"
        android:screenSize="small" />
    <screen
        android:screenDensity="480"
        android:screenSize="small" />
    <screen
        android:screenDensity="640"
        android:screenSize="small" />

    <!-- all normal size screens -->
    <screen
        android:screenDensity="ldpi"
        android:screenSize="normal" />
    <screen
        android:screenDensity="mdpi"
        android:screenSize="normal" />
    <screen
        android:screenDensity="hdpi"
        android:screenSize="normal" />
    <screen
        android:screenDensity="xhdpi"
        android:screenSize="normal" />
    <screen
        android:screenDensity="420"
        android:screenSize="normal" />
    <screen
        android:screenDensity="480"
        android:screenSize="normal" />
    <screen
        android:screenDensity="560"
        android:screenSize="normal" />
    <screen
        android:screenDensity="640"
        android:screenSize="normal" />

</compatible-screens>

但是在添加了它不安装在6英寸和6.4英寸手机的华为Mate 8,索尼Xperia C6802手机之后,我想在不是平板电脑的所有手机中安装该应用程序。我怎样才能做到这一点。?

0 个答案:

没有答案