Note that there are some explanatory texts on larger screens.

plurals
  1. POMy app will not install on a HVGA device
    primarykey
    data
    text
    <p>I have an app that I've developed and I'm testing it across multiple devices.</p> <p>The app will not install on a Samsung Galaxy Q (running Froyo with an HVGA 320x480 screen).</p> <p>The minSdkVersion is 7 so that shouldn't be the problem. It installs and runs fine on other. larger screen devices.</p> <p>I have set the AndroidManifest.xml <code>&lt;supports-screens&gt;</code> flag to true for all screen sizes.</p> <p>The error I'm seeing is "application not installed" when attempting to install the .apk.</p> <p>It installs fine on the emulator with the same screen resolution and OS version.</p> <p>Here's the manifest, please note that because the project is under NDA I've replaced identifiable elements with "%%%%".</p> <p><code>AndroidManifest.xml</code></p> <pre><code>&lt;manifest android:versionCode="1" android:versionName="1.0" package="%%%%" xmlns:android="http://schemas.android.com/apk/res/android"&gt; &lt;application android:debuggable="false" android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name" android:name="%%%%" android:theme="@style/Theme.LoadingBackground"&gt; &lt;activity android:label="@string/app_name" android:name="%%%%" /&gt; &lt;activity android:icon="@drawable/icon" android:label="@string/app_name" android:launchMode="singleTask" android:name="%%%%" android:screenOrientation="portrait"&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:label="Store Front Widget" android:name="%%%%" android:screenOrientation="portrait" android:taskAffinity="%%%%"&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;receiver android:label="%%%%" android:name="%%%%"&gt; &lt;intent-filter&gt; &lt;action android:name="android.appwidget.action.APPWIDGET_UPDATE" /&gt; &lt;/intent-filter&gt; &lt;meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_provider" /&gt; &lt;/receiver&gt; &lt;receiver android:name="%%%%" /&gt; &lt;service android:name="c%%%%" /&gt; &lt;service android:name="%%%%"&gt; &lt;intent-filter&gt; &lt;action android:name="%%%%" /&gt; &lt;/intent-filter&gt; &lt;/service&gt; &lt;service android:name="%%%%"&gt; &lt;intent-filter&gt; &lt;action android:name="%%%%" /&gt; &lt;/intent-filter&gt; &lt;/service&gt; &lt;uses-library android:name="com.google.android.maps" /&gt; &lt;/application&gt; &lt;supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" /&gt; &lt;uses-feature android:name="android.hardware.camera" /&gt; &lt;uses-feature android:name="android.hardware.camera.autofocus" /&gt; &lt;uses-permission android:name="android.permission.CAMERA" /&gt; &lt;uses-permission android:name="android.permission.READ_PHONE_STATE" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&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.RECEIVE_BOOT_COMPLETED" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /&gt; &lt;uses-sdk android:minSdkVersion="7" android:targetSdkVersion="7" /&gt; &lt;/manifest&gt; </code></pre>
    singulars
    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. 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