2011-03-03 21:15:10 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2010-06-08 13:15:15 +00:00
|
|
|
<!-- NB: android:versionCode needs to be bumped for formal releases -->
|
2011-03-03 21:15:10 +00:00
|
|
|
|
2010-06-08 13:15:15 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-10-25 19:18:42 +00:00
|
|
|
package="org.scummvm.scummvm"
|
2011-04-09 16:37:06 +00:00
|
|
|
android:versionCode="@ANDROID_VERSIONCODE@"
|
2011-03-03 21:15:10 +00:00
|
|
|
android:versionName="@VERSION@"
|
2011-10-22 18:47:02 +00:00
|
|
|
android:installLocation="preferExternal"
|
2011-10-25 19:18:42 +00:00
|
|
|
android:sharedUserId="org.scummvm.scummvm">
|
2011-03-03 21:15:10 +00:00
|
|
|
|
|
|
|
<!-- 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:targetSdkVersion="8"/>
|
|
|
|
|
|
|
|
<application android:name=".ScummVMApplication"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:description="@string/app_desc"
|
|
|
|
android:icon="@drawable/scummvm">
|
|
|
|
<activity android:name=".ScummVMActivity"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
|
|
android:screenOrientation="landscape"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity android:name=".Unpacker"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
|
|
android:screenOrientation="landscape"
|
|
|
|
android:configChanges="orientation|keyboardHidden">
|
2011-10-25 19:18:42 +00:00
|
|
|
<meta-data android:name="org.scummvm.unpacker.nextActivity"
|
|
|
|
android:value="org.scummvm.scummvm/.ScummVMActivity"/>
|
2011-03-03 21:15:10 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
2011-10-25 19:18:42 +00:00
|
|
|
<permission android:name="org.scummvm.scummvm.permission.SCUMMVM_PLUGIN"
|
2011-03-03 21:15:10 +00:00
|
|
|
android:label="@string/scummvm_perm_plugin_label"
|
|
|
|
android:description="@string/scummvm_perm_plugin_desc"
|
|
|
|
android:protectionLevel="signature"/>
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
|
|
|
|
<!-- Always needs some sort of qwerty keyboard.
|
|
|
|
Can work with a D-pad / trackball -->
|
|
|
|
<uses-configuration android:reqFiveWayNav="true"
|
|
|
|
android:reqKeyboardType="qwerty"/>
|
|
|
|
|
|
|
|
<!-- .. or touchscreen -->
|
|
|
|
<uses-configuration android:reqTouchScreen="finger"
|
|
|
|
android:reqKeyboardType="qwerty"/>
|
|
|
|
|
|
|
|
<uses-configuration android:reqTouchScreen="stylus"
|
|
|
|
android:reqKeyboardType="qwerty"/>
|
2010-06-08 13:15:15 +00:00
|
|
|
</manifest>
|