Note that there are some explanatory texts on larger screens.

plurals
  1. POWhy my app is not compatible with some devices?
    text
    copied!<p>I don't understand why my app is not compatible with many devices, in fact 479, between them Nexus 7, Samsung Galaxy III, Xtouch X405... I have tried many configurations in the manifest file but I couldn't get more compatibles mobiles. </p> <p>My actual configuration is:</p> <pre><code> &lt;supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" /&gt; &lt;uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /&gt; &lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /&gt; &lt;uses-permission android:name="android.permission.CAMERA" /&gt; &lt;uses-feature android:name="android.hardware.camera" /&gt; &lt;uses-feature android:name="android.hardware.camera.autofocus" android:required="false" /&gt; &lt;uses-feature android:name="android.hardware.location" android:required="false" /&gt; &lt;uses-feature android:name="android.hardware.location.network" android:required="false" /&gt; &lt;uses-feature android:name="android.hardware.location.gps" android:required="false" /&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.SEND" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;data android:mimeType="image/*" /&gt; &lt;/intent-filter&gt; </code></pre> <p>And in Google Play: <a href="http://d.pr/i/jpEB" rel="nofollow noreferrer">http://d.pr/i/jpEB</a></p> <p>I think that with this configuration I am supporting all screens with any configuration and only restriction of hardware is the camera. I read this post: <a href="https://stackoverflow.com/questions/11691775/why-my-app-is-not-showing-up-on-tablets-in-google-play">Why my App is not showing up on tablets in Google Play?</a> about a similar problem and I have tried to use the tag with all screenDensity even 213 and 480 but I got less compatible devices than with my actual configuration. </p> <p>Anyone knows what is it the problem in my configuration?</p> <p>Thank you, </p> <p>Regards. </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