Note that there are some explanatory texts on larger screens.

plurals
  1. POManifest and supported devices showed in android market
    text
    copied!<p>Is there a tool out there which could test my android manifest to see which devices are supported by the android market with given settings? I hope that there is some way other than uploading every test to android market.</p> <p>I need to find out why some small screen devices are not supported, but I have not yet found the reason. </p> <p>I currently support the following screens and I suppose that <code>android:smallScreens</code> should let Samsung Galaxy Mini with Android 2.3 install my app, but it does not. </p> <pre><code>&lt;supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:anyDensity="true" /&gt; </code></pre> <p>edit: current permissions and features: </p> <pre><code>&lt;uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /&gt; &lt;uses-permission android:name="android.permission.INTERNET"&gt;&lt;/uses-permission&gt; &lt;uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"&gt;&lt;/uses-permission&gt; &lt;uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"&gt;&lt;/uses-permission&gt; &lt;uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"&gt;&lt;/uses-permission&gt; &lt;uses-permission android:name="android.permission.CAMERA"&gt;&lt;/uses-permission&gt; &lt;uses-permission android:name="android.permission.VIBRATE"&gt;&lt;/uses-permission&gt; &lt;uses-permission android:name="android.permission.FLASHLIGHT"&gt;&lt;/uses-permission&gt; &lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"&gt;&lt;/uses-permission&gt; &lt;uses-feature android:name="android.hardware.camera" /&gt; &lt;uses-feature android:name="android.hardware.camera.autofocus" /&gt; &lt;uses-feature name="android.hardware.screen.portrait" required="false" /&gt; </code></pre> <p>I think I have to remove some of these- I have garbage here which is not needed anymore. Will digg into it tonight/tomorrow. </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