summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
blob: 19d351a423802fc726d24bd6708983c5b2d5f55c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="pw.cloudef.rpg" android:versionCode="1" android:versionName="1.0" android:installLocation="auto">
    <application android:isGame="true" android:label="rpg" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:hardwareAccelerated="true">
        <meta-data android:name="SDL_ENV.SDL_ACCELEROMETER_AS_JOYSTICK" android:value="0" />
        <activity
           android:name=".Mkxp"
           android:alwaysRetainTaskState="true"
           android:launchMode="singleInstance"
           android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation"
           >
           <meta-data android:name="android.app.lib_name" android:value=""/>
        </activity>
        <activity
           android:name=".Easyrpg"
           android:alwaysRetainTaskState="true"
           android:launchMode="singleInstance"
           android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation"
           >
           <meta-data android:name="android.app.lib_name" android:value=""/>
        </activity>
        <activity
           android:name=".Nodeweb"
           android:alwaysRetainTaskState="true"
           android:launchMode="singleInstance"
           android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation"
           >
           <meta-data android:name="android.app.lib_name" android:value=""/>
        </activity>
        <activity android:name=".Launcher" android:exported="true">
           <meta-data android:name="android.app.lib_name" android:value="" />
        </activity>
    </application>
    <uses-sdk android:minSdkVersion="24" android:targetSdkVersion="26" />
    <uses-feature android:glEsVersion="0x00020000" />
    <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
    <uses-feature android:name="android.software.leanback" android:required="false" />
    <uses-feature android:name="android.hardware.gamepad" android:required="false" />
    <uses-feature android:name="android.hardware.usb.host" android:required="false" />
    <uses-feature android:name="android.hardware.bluetooth" android:required="false" />
    <uses-feature android:name="android.hardware.type.pc" android:required="false" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.INTERNET" />
</manifest>