Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Problem sorted, but not sure exactly how... I tried removing all of the compatible-screen and support-screen code, but it didn't make much difference. The only thing I can think of is that I removed the line;</p> <pre><code>&lt;uses-feature android:name="android.hardware.CAMERA" /&gt; </code></pre> <p>Which shouldn't have been there anyway. Now supported by 2522 devices, so pretty happy.</p> <p>Here's the new manifest anyway:</p> <pre><code>&lt;uses-sdk android:minSdkVersion="5" android:targetSdkVersion="17"/&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-permission android:name="android.permission.CAMERA" /&gt; &lt;application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.Light" 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.blahpro.Find" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" &gt; &lt;intent-filter &gt; &lt;action android:name="com.blah.blahactivity.FIND" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;/application&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

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