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.
(cherry picked from commit 456b950c52
)
Conflicts:
dists/android/AndroidManifest.xml
dists/android/plugin-manifest.xml
This commit is contained in:
parent
80a92cf3d3
commit
7c04fbb8ca
4 changed files with 8 additions and 4 deletions
|
@ -5,7 +5,8 @@
|
|||
package="org.inodes.gus.scummvm"
|
||||
android:versionCode="@ANDROID_VERSIONCODE@"
|
||||
android:versionName="1.4.0pre"
|
||||
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. -->
|
||||
|
|
|
@ -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. -->
|
||||
|
|
|
@ -4,7 +4,8 @@
|
|||
package="org.inodes.gus.scummvm.plugin.@PLUGIN_NAME@"
|
||||
android:versionCode="@PLUGIN_VERSION_CODE@"
|
||||
android:versionName="1.4.0pre"
|
||||
android:installLocation="preferExternal">
|
||||
android:installLocation="preferExternal"
|
||||
android:sharedUserId="org.inodes.gus.scummvm">
|
||||
|
||||
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" />
|
||||
|
||||
|
|
|
@ -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" />
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue