aboutsummaryrefslogtreecommitdiff
path: root/dists/android/AndroidManifest.xml.in
diff options
context:
space:
mode:
Diffstat (limited to 'dists/android/AndroidManifest.xml.in')
-rw-r--r--dists/android/AndroidManifest.xml.in12
1 files changed, 5 insertions, 7 deletions
diff --git a/dists/android/AndroidManifest.xml.in b/dists/android/AndroidManifest.xml.in
index ce0bef6f94..26a94f957b 100644
--- a/dists/android/AndroidManifest.xml.in
+++ b/dists/android/AndroidManifest.xml.in
@@ -2,16 +2,14 @@
<!-- NB: android:versionCode needs to be bumped for formal releases -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.inodes.gus.scummvm"
- android:versionCode="6" android:versionName="@VERSION@">
+ android:versionCode="6" android:versionName="@VERSION@"
+ android:installLocation="preferExternal">
- <!-- This version is built against a cupcake (and newer?) ABI.
- It works on Android 1.5 (SDK 3) and Android 1.6 (SDK 4).
- Native libraries changed around in Android 2.0 (SDK 5) so we
- don't work on that yet.
+ <!-- This version works on Android 1.5 (SDK 3) and newer, but we
+ want Android 2.2 (SDK 8) defaults and features.
-->
<uses-sdk android:minSdkVersion="3"
- android:maxSdkVersion="4"
- android:targetSdkVersion="4" />
+ android:targetSdkVersion="8" />
<application android:name=".ScummVMApplication"
android:label="@string/app_name"