Remove Ketmarese synonyms for yes/no
[d2df-sdl.git] / android / AndroidManifest.xml
blob02494e93343219a47879417450a97cf125fa86d4
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3       package="org.d2df.app"
4       android:versionCode="1"
5       android:versionName="0.667-git"
6       android:installLocation="auto">
8     <!-- min Android 4.0, target Android 4.4 -->
9     <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="19" />
11     <!-- OpenGL ES 2.0 -->
12     <!-- <uses-feature android:glEsVersion="0x00020000" /> -->
14     <!-- OpenGL ES 1.1 -->
15     <uses-feature android:glEsVersion="0x00010001" />
17     <!-- Game controller support -->
18     <uses-feature android:name="android.hardware.bluetooth" android:required="false" />
19     <uses-feature android:name="android.hardware.gamepad" android:required="false" />
20     <uses-feature android:name="android.hardware.usb.host" android:required="false" />
22     <!-- External mouse input events -->
23     <uses-feature android:name="android.hardware.type.pc" android:required="false" />
25     <!-- Allow writing to external storage -->
26     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
28     <!-- Allow access to the vibrator -->
29     <uses-permission android:name="android.permission.VIBRATE" />
31     <!-- if you want to capture audio, uncomment this. -->
32     <!-- <uses-permission android:name="android.permission.RECORD_AUDIO" /> -->
34     <!-- Allow networking -->
35     <uses-permission android:name="android.permission.INTERNET" />
36     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
38     <application android:label="Doom2D Forever"
39                  android:icon="@mipmap/ic_launcher"
40                  android:allowBackup="true"
41                  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
42                  android:hardwareAccelerated="true"
43                  android:debuggable="true" >
45         <meta-data android:name="SDL_ENV.SDL_ACCELEROMETER_AS_JOYSTICK" android:value="0"/>
47         <activity android:name="Launcher" android:label="Doom2D Forever" android:launchMode="singleInstance">
48             <intent-filter>
49                 <action android:name="android.intent.action.MAIN" />
50                 <category android:name="android.intent.category.LAUNCHER" />
51             </intent-filter>
52         </activity>
54         <activity android:name="Doom2DF"
55             android:label="Doom2DF Forever"
56             android:alwaysRetainTaskState="true"
57             android:launchMode="singleInstance"
58             android:screenOrientation="sensorLandscape"
59             android:configChanges="keyboardHidden|orientation|screenSize"
60             android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
61         >
62         </activity>
64     </application>
66 </manifest>