diff options
author | Alyssa Milburn | 2011-10-22 20:47:02 +0200 |
---|---|---|
committer | Alyssa Milburn | 2011-10-22 20:47:02 +0200 |
commit | 456b950c527da116e4132ed9e3e260419ac34ff0 (patch) | |
tree | 9dc581fc8d38857fe7a020fe8dcf3556d1203a9a /dists/android | |
parent | ff3f4d9493d66b034119f0ff15657c9e8cd1b1a8 (diff) | |
download | scummvm-rg350-456b950c527da116e4132ed9e3e260419ac34ff0.tar.gz scummvm-rg350-456b950c527da116e4132ed9e3e260419ac34ff0.tar.bz2 scummvm-rg350-456b950c527da116e4132ed9e3e260419ac34ff0.zip |
ANDROID: Add a shared user id.
Otherwise the plugins fail to run on modern Android because they're set
to run in-process but they're not allowed to do so.
Diffstat (limited to 'dists/android')
-rw-r--r-- | dists/android/AndroidManifest.xml | 3 | ||||
-rw-r--r-- | dists/android/AndroidManifest.xml.in | 3 | ||||
-rw-r--r-- | dists/android/plugin-manifest.xml | 3 | ||||
-rw-r--r-- | dists/android/plugin-manifest.xml.in | 3 |
4 files changed, 8 insertions, 4 deletions
diff --git a/dists/android/AndroidManifest.xml b/dists/android/AndroidManifest.xml index affce3c004..a25048fe28 100644 --- a/dists/android/AndroidManifest.xml +++ b/dists/android/AndroidManifest.xml @@ -5,7 +5,8 @@ package="org.inodes.gus.scummvm" android:versionCode="@ANDROID_VERSIONCODE@" android:versionName="1.5.0git" - android:installLocation="preferExternal"> + android:installLocation="preferExternal" + android:sharedUserId="org.inodes.gus.scummvm"> <!-- This version works on Android 1.5 (SDK 3) and newer, but we want Android 2.2 (SDK 8) defaults and features. --> diff --git a/dists/android/AndroidManifest.xml.in b/dists/android/AndroidManifest.xml.in index e9ab30a42b..32444a03f0 100644 --- a/dists/android/AndroidManifest.xml.in +++ b/dists/android/AndroidManifest.xml.in @@ -5,7 +5,8 @@ package="org.inodes.gus.scummvm" android:versionCode="@ANDROID_VERSIONCODE@" android:versionName="@VERSION@" - android:installLocation="preferExternal"> + android:installLocation="preferExternal" + android:sharedUserId="org.inodes.gus.scummvm"> <!-- This version works on Android 1.5 (SDK 3) and newer, but we want Android 2.2 (SDK 8) defaults and features. --> diff --git a/dists/android/plugin-manifest.xml b/dists/android/plugin-manifest.xml index adcd39f9aa..728beb1de3 100644 --- a/dists/android/plugin-manifest.xml +++ b/dists/android/plugin-manifest.xml @@ -4,7 +4,8 @@ package="org.inodes.gus.scummvm.plugin.@PLUGIN_NAME@" android:versionCode="@PLUGIN_VERSION_CODE@" android:versionName="1.5.0git" - android:installLocation="preferExternal"> + android:installLocation="preferExternal" + android:sharedUserId="org.inodes.gus.scummvm"> <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" /> diff --git a/dists/android/plugin-manifest.xml.in b/dists/android/plugin-manifest.xml.in index 47db078c93..ab0a63a0cf 100644 --- a/dists/android/plugin-manifest.xml.in +++ b/dists/android/plugin-manifest.xml.in @@ -4,7 +4,8 @@ package="org.inodes.gus.scummvm.plugin.@PLUGIN_NAME@" android:versionCode="@PLUGIN_VERSION_CODE@" android:versionName="@VERSION@" - android:installLocation="preferExternal"> + android:installLocation="preferExternal" + android:sharedUserId="org.inodes.gus.scummvm"> <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" /> |