ANDROID: Move from org.inodes.gus to org.scummvm.
(cherry picked from commit 44b7f3aed5
)
This commit is contained in:
parent
7c04fbb8ca
commit
18e646f887
14 changed files with 40 additions and 40 deletions
|
@ -2,11 +2,11 @@
|
|||
<!-- 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"
|
||||
package="org.scummvm.scummvm"
|
||||
android:versionCode="@ANDROID_VERSIONCODE@"
|
||||
android:versionName="1.4.0pre"
|
||||
android:installLocation="preferExternal"
|
||||
android:sharedUserId="org.inodes.gus.scummvm">
|
||||
android:sharedUserId="org.scummvm.scummvm">
|
||||
|
||||
<!-- This version works on Android 1.5 (SDK 3) and newer, but we
|
||||
want Android 2.2 (SDK 8) defaults and features. -->
|
||||
|
@ -31,8 +31,8 @@
|
|||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
||||
android:screenOrientation="landscape"
|
||||
android:configChanges="orientation|keyboardHidden">
|
||||
<meta-data android:name="org.inodes.gus.unpacker.nextActivity"
|
||||
android:value="org.inodes.gus.scummvm/.ScummVMActivity"/>
|
||||
<meta-data android:name="org.scummvm.unpacker.nextActivity"
|
||||
android:value="org.scummvm.scummvm/.ScummVMActivity"/>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<category android:name="android.intent.category.LAUNCHER"/>
|
||||
|
@ -40,7 +40,7 @@
|
|||
</activity>
|
||||
</application>
|
||||
|
||||
<permission android:name="org.inodes.gus.scummvm.permission.SCUMMVM_PLUGIN"
|
||||
<permission android:name="org.scummvm.scummvm.permission.SCUMMVM_PLUGIN"
|
||||
android:label="@string/scummvm_perm_plugin_label"
|
||||
android:description="@string/scummvm_perm_plugin_desc"
|
||||
android:protectionLevel="signature"/>
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
<!-- 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"
|
||||
package="org.scummvm.scummvm"
|
||||
android:versionCode="@ANDROID_VERSIONCODE@"
|
||||
android:versionName="@VERSION@"
|
||||
android:installLocation="preferExternal"
|
||||
android:sharedUserId="org.inodes.gus.scummvm">
|
||||
android:sharedUserId="org.scummvm.scummvm">
|
||||
|
||||
<!-- This version works on Android 1.5 (SDK 3) and newer, but we
|
||||
want Android 2.2 (SDK 8) defaults and features. -->
|
||||
|
@ -31,8 +31,8 @@
|
|||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
||||
android:screenOrientation="landscape"
|
||||
android:configChanges="orientation|keyboardHidden">
|
||||
<meta-data android:name="org.inodes.gus.unpacker.nextActivity"
|
||||
android:value="org.inodes.gus.scummvm/.ScummVMActivity"/>
|
||||
<meta-data android:name="org.scummvm.unpacker.nextActivity"
|
||||
android:value="org.scummvm.scummvm/.ScummVMActivity"/>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<category android:name="android.intent.category.LAUNCHER"/>
|
||||
|
@ -40,7 +40,7 @@
|
|||
</activity>
|
||||
</application>
|
||||
|
||||
<permission android:name="org.inodes.gus.scummvm.permission.SCUMMVM_PLUGIN"
|
||||
<permission android:name="org.scummvm.scummvm.permission.SCUMMVM_PLUGIN"
|
||||
android:label="@string/scummvm_perm_plugin_label"
|
||||
android:description="@string/scummvm_perm_plugin_desc"
|
||||
android:protectionLevel="signature"/>
|
||||
|
|
|
@ -1,29 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.inodes.gus.scummvm.plugin.@PLUGIN_NAME@"
|
||||
package="org.scummvm.scummvm.plugin.@PLUGIN_NAME@"
|
||||
android:versionCode="@PLUGIN_VERSION_CODE@"
|
||||
android:versionName="1.4.0pre"
|
||||
android:installLocation="preferExternal"
|
||||
android:sharedUserId="org.inodes.gus.scummvm">
|
||||
android:sharedUserId="org.scummvm.scummvm">
|
||||
|
||||
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" />
|
||||
|
||||
<application android:label="@string/app_name"
|
||||
android:description="@string/app_desc"
|
||||
android:icon="@drawable/scummvm">
|
||||
<receiver android:name="org.inodes.gus.scummvm.PluginProvider"
|
||||
android:process="org.inodes.gus.scummvm">
|
||||
<receiver android:name="org.scummvm.scummvm.PluginProvider"
|
||||
android:process="org.scummvm.scummvm">
|
||||
<intent-filter>
|
||||
<action android:name="org.inodes.gus.scummvm.action.PLUGIN_QUERY"/>
|
||||
<action android:name="org.scummvm.scummvm.action.PLUGIN_QUERY"/>
|
||||
<category android:name="android.intent.category.INFO"/>
|
||||
</intent-filter>
|
||||
<meta-data android:name="org.inodes.gus.scummvm.meta.UNPACK_LIB"
|
||||
<meta-data android:name="org.scummvm.scummvm.meta.UNPACK_LIB"
|
||||
android:value="mylib/armeabi/lib@PLUGIN_NAME@.so" />
|
||||
</receiver>
|
||||
</application>
|
||||
|
||||
<uses-permission android:name="org.inodes.gus.scummvm.permission.SCUMMVM_PLUGIN"/>
|
||||
<uses-permission android:name="org.scummvm.scummvm.permission.SCUMMVM_PLUGIN"/>
|
||||
<uses-configuration android:reqFiveWayNav="true"
|
||||
android:reqKeyboardType="qwerty"/>
|
||||
|
||||
|
|
|
@ -1,29 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.inodes.gus.scummvm.plugin.@PLUGIN_NAME@"
|
||||
package="org.scummvm.scummvm.plugin.@PLUGIN_NAME@"
|
||||
android:versionCode="@PLUGIN_VERSION_CODE@"
|
||||
android:versionName="@VERSION@"
|
||||
android:installLocation="preferExternal"
|
||||
android:sharedUserId="org.inodes.gus.scummvm">
|
||||
android:sharedUserId="org.scummvm.scummvm">
|
||||
|
||||
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" />
|
||||
|
||||
<application android:label="@string/app_name"
|
||||
android:description="@string/app_desc"
|
||||
android:icon="@drawable/scummvm">
|
||||
<receiver android:name="org.inodes.gus.scummvm.PluginProvider"
|
||||
android:process="org.inodes.gus.scummvm">
|
||||
<receiver android:name="org.scummvm.scummvm.PluginProvider"
|
||||
android:process="org.scummvm.scummvm">
|
||||
<intent-filter>
|
||||
<action android:name="org.inodes.gus.scummvm.action.PLUGIN_QUERY"/>
|
||||
<action android:name="org.scummvm.scummvm.action.PLUGIN_QUERY"/>
|
||||
<category android:name="android.intent.category.INFO"/>
|
||||
</intent-filter>
|
||||
<meta-data android:name="org.inodes.gus.scummvm.meta.UNPACK_LIB"
|
||||
<meta-data android:name="org.scummvm.scummvm.meta.UNPACK_LIB"
|
||||
android:value="mylib/armeabi/lib@PLUGIN_NAME@.so" />
|
||||
</receiver>
|
||||
</application>
|
||||
|
||||
<uses-permission android:name="org.inodes.gus.scummvm.permission.SCUMMVM_PLUGIN"/>
|
||||
<uses-permission android:name="org.scummvm.scummvm.permission.SCUMMVM_PLUGIN"/>
|
||||
<uses-configuration android:reqFiveWayNav="true"
|
||||
android:reqKeyboardType="qwerty"/>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<org.inodes.gus.scummvm.EditableSurfaceView
|
||||
<org.scummvm.scummvm.EditableSurfaceView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/main_surface"
|
||||
android:layout_width="fill_parent"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue