Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid - Google Play filtering out xxhdpi
    text
    copied!<p>I currently have a problem with Google Play filtering and the new density class xxhpdi, which was introduced in API Level 16. My app is splitted into 3 APK files (I know that is not the best practice, but due to a bad planning, I have to do it like this at the moment). The interesting part is the version for Android 4.0, Smartphones only. I have setup market filter in AndroidManifest.xml like this:</p> <pre><code>&lt;uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17"/&gt; &lt;compatible-screens&gt; &lt;screen android:screenDensity="ldpi" android:screenSize="small"/&gt; &lt;screen android:screenDensity="mdpi" android:screenSize="small"/&gt; &lt;screen android:screenDensity="hdpi" android:screenSize="small"/&gt; &lt;screen android:screenDensity="xhdpi" android:screenSize="small"/&gt; &lt;screen android:screenDensity="ldpi" android:screenSize="normal"/&gt; &lt;screen android:screenDensity="mdpi" android:screenSize="normal"/&gt; &lt;screen android:screenDensity="hdpi" android:screenSize="normal"/&gt; &lt;screen android:screenDensity="xhdpi" android:screenSize="normal"/&gt; &lt;/compatible-screens&gt; </code></pre> <p>The problem is now, that new devices with 1080p screens like the HTC Droid DNA can't see or install my app, because I did not specify that it also supports the xxhdpi screens. The problem is, because i set my minSdkVersion to API Level 14, which is Android ICS, I cannot simply add the line:</p> <pre><code>&lt;screen android:screenDensity="xxhdpi" android:screenSize="normal"/&gt; </code></pre> <p>This is because API level 14 does not know the xxhdpi class. Is there any solution for my problem, without having to create a 4th seperate APK file?</p> <p>Thank you.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload