Android app compatibility issues with Nexus 6

To support the size and density of the Nexus 6 screen, my manifest has the following:

    <compatible-screens>
    <screen android:screenSize="normal" android:screenDensity="560" />
    <screen android:screenSize="large" android:screenDensity="560" />
    <screen android:screenSize="xlarge" android:screenDensity="560" />
    </compatible-screens>

A complete list of values ​​in my manifest is given below. Google Play says my application is incompatible. Not sure what I'm missing here.

 <compatible-screens>
                    <screen android:screenSize="normal" android:screenDensity="xhdpi" />
                    <screen android:screenSize="normal" android:screenDensity="480" />
                    <screen android:screenSize="normal" android:screenDensity="560" />
                    <screen android:screenSize="normal" android:screenDensity="640" />
                    <screen android:screenSize="large" android:screenDensity="ldpi" />
                    <screen android:screenSize="large" android:screenDensity="mdpi" />
                    <screen android:screenSize="large" android:screenDensity="213" />
                    <screen android:screenSize="large" android:screenDensity="hdpi" />
                    <screen android:screenSize="large" android:screenDensity="xhdpi" />
                    <screen android:screenSize="large" android:screenDensity="480" />
                    <screen android:screenSize="large" android:screenDensity="560" />
                    <screen android:screenSize="large" android:screenDensity="640" />
                    <screen android:screenSize="xlarge" android:screenDensity="ldpi" />
                    <screen android:screenSize="xlarge" android:screenDensity="mdpi" />
                    <screen android:screenSize="xlarge" android:screenDensity="213" />
                    <screen android:screenSize="xlarge" android:screenDensity="hdpi" />
                    <screen android:screenSize="xlarge" android:screenDensity="xhdpi" />
                    <screen android:screenSize="xlarge" android:screenDensity="480" />
                    <screen android:screenSize="xlarge" android:screenDensity="560" />
                    <screen android:screenSize="xlarge" android:screenDensity="640" />
                </compatible-screens>
+4
source share
1 answer

I also have a lot of problems for my application to run on Nexus 6. Finally, I have found how to do this, I hope this works for you.

+8

All Articles