Note that there are some explanatory texts on larger screens.

plurals
  1. POGoogle Play - Zero Supported Devices
    text
    copied!<p>I'm aware there are similar questions on here, but none seem to have a satisfactory answer.</p> <p>I'm trying to publish an app, but no matter what I try the developer console is reporting that there are zero supported devices</p> <p><img src="https://i.stack.imgur.com/jhBxP.png" alt="Dev Console screenshot"></p> <p>Here's my full manifest;</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.blah.blahpro" android:versionCode="6" android:versionName="1.0" &gt; &lt;uses-sdk android:minSdkVersion="5" android:targetSdkVersion="17"/&gt; &lt;supports-screens android:anyDensity="true" android:xlargeScreens="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:resizeable="true" /&gt; &lt;compatible-screens&gt; &lt;!-- small size screens --&gt; &lt;screen android:screenSize="small" android:screenDensity="ldpi" /&gt; &lt;screen android:screenSize="small" android:screenDensity="mdpi" /&gt; &lt;screen android:screenSize="small" android:screenDensity="hdpi" /&gt; &lt;screen android:screenSize="small" android:screenDensity="xhdpi" /&gt; &lt;!--Only hdpi and xhdpi for normal size screens --&gt; &lt;screen android:screenSize="normal" android:screenDensity="ldpi" /&gt; &lt;screen android:screenSize="normal" android:screenDensity="mdpi" /&gt; &lt;screen android:screenSize="normal" android:screenDensity="hdpi" /&gt; &lt;screen android:screenSize="normal" android:screenDensity="xhdpi" /&gt; &lt;!-- all large size screens --&gt; &lt;screen android:screenSize="large" android:screenDensity="ldpi" /&gt; &lt;screen android:screenSize="large" android:screenDensity="mdpi" /&gt; &lt;screen android:screenSize="large" android:screenDensity="hdpi" /&gt; &lt;screen android:screenSize="large" android:screenDensity="xhdpi" /&gt; &lt;!-- all xlarge size screens --&gt; &lt;screen android:screenSize="xlarge" android:screenDensity="ldpi" /&gt; &lt;screen android:screenSize="xlarge" android:screenDensity="mdpi" /&gt; &lt;screen android:screenSize="xlarge" android:screenDensity="hdpi" /&gt; &lt;screen android:screenSize="xlarge" android:screenDensity="xhdpi" /&gt; &lt;!-- Special case for Nexus 7 --&gt; &lt;screen android:screenSize="large" android:screenDensity="213" /&gt; &lt;/compatible-screens&gt; &lt;uses-feature android:name="android.hardware.location" android:required="false"/&gt; &lt;uses-feature android:name="android.hardware.camera" android:required="false"/&gt; &lt;uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /&gt; &lt;uses-feature android:name="android.hardware.CAMERA" /&gt; &lt;uses-permission android:name="android.permission.CAMERA" /&gt; &lt;application android:icon="@drawable/blahicon" android:label="@string/app_name" android:allowBackup="false"&gt; &lt;activity android:label="@string/app_name" android:name="com.blah.blahpro.Main" &gt; &lt;intent-filter &gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:label="@string/app_name" android:name="com.blah.satcalcpro.Find" &gt; &lt;intent-filter &gt; &lt;action android:name="com.blah.lookangles.FIND" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;/application&gt; &lt;/manifest&gt; </code></pre> <p>Any help is appreciated.</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