Android – Play商店不支持Nexus 6

我有一个Nexus 6(1440 x 2560像素(~493 ppi像素密度))和一个LG G3(1440 x 2560像素(~538 ppi像素密度)),这表明:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="..."
          android:installLocation="preferExternal"
          android:versionCode="..."
          android:versionName="...">

    <uses-sdk
            android:minSdkVersion="14"
            android:targetSdkVersion="22"/>

    <uses-feature
            android:glEsVersion="0x00020000"
            android:required="true"/>

    <uses-feature
            android:name="android.hardware.touchscreen"
            android:required="true"/>
    <uses-feature
            android:name="android.hardware.location"
            android:required="true"/>

    <uses-feature
            android:name="android.hardware.camera"
            android:required="true"/>

    <uses-permission android:name="android.permission.VIBRATE"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.GET_ACCOUNTS"/>
    <uses-permission android:name="android.permission.WAKE_LOCK"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>

    <!--GCM-->
    <permission android:name="...permission.C2D_MESSAGE" android:protectionLevel="signature"/>
    <uses-permission android:name="...permission.C2D_MESSAGE"/>
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>

    <!-- =========== Screen Types =========== -->
    <supports-screens android:requiresSmallestWidthDp="400"/>
    <compatible-screens>
        <!-- all small size screens -->
        <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="mdpi"
                android:screenSize="normal"/>
        <screen
                android:screenDensity="hdpi"
                android:screenSize="normal"/>
        <screen
                android:screenDensity="xhdpi"
                android:screenSize="normal"/>
        <screen
                android:screenDensity="480"
                android:screenSize="normal"/>
        <screen
                android:screenDensity="640"
                android:screenSize="normal"/>

        <!-- all large size screens -->
        <screen
                android:screenDensity="mdpi"
                android:screenSize="large"/>
        <screen
                android:screenDensity="hdpi"
                android:screenSize="large"/>
        <screen
                android:screenDensity="xhdpi"
                android:screenSize="large"/>
        <screen
                android:screenDensity="480"
                android:screenSize="large"/>
        <screen
                android:screenDensity="640"
                android:screenSize="large"/>
    </compatible-screens>

LG G3可以下载应用程序,但Nexus 6不能.我在这里错过了什么?
谢谢.

编辑:
Haresh Chhelana的回答是正确的,尽管这更像是一种解决方案.我认为谷歌应该改变支持屏幕,不仅仅是为了启用屏幕兼容模式(在我看来相当无用),而是排除一些设备.这更符合逻辑:

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

而不是在兼容屏幕中指定所有可能的组合,这就是为什么会发生这样的错误(当我们只是想要平板电脑时它才有效,所以它应该只适用于手机,但它不会……).

最佳答案 尝试添加此屏幕支持:

<screen
    android:screenDensity="560"
    android:screenSize="normal" />

参考. :What is the right screen size and density configuration of Nexus 6?

点赞