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 xmlnsandroid="http://schemas.android.com/apk/res/android" package="pw.cloudef.rpg" androidversionCode="1" androidversionName="1.0" androidinstallLocation="auto">
<application androidisGame="true" androidlabel="rpg" androidtheme="@android:style/Theme.NoTitleBar.Fullscreen" androidhardwareAccelerated="true">
<meta-data androidname="SDL_ENV.SDL_ACCELEROMETER_AS_JOYSTICK" androidvalue="0" />
<activity
androidname=".Mkxp"
androidalwaysRetainTaskState="true"
androidlaunchMode="singleInstance"
androidconfigChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation"
>
<meta-data androidname="android.app.lib_name" androidvalue=""/>
</activity>
<activity
androidname=".Easyrpg"
androidalwaysRetainTaskState="true"
androidlaunchMode="singleInstance"
androidconfigChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation"
>
<meta-data androidname="android.app.lib_name" androidvalue=""/>
</activity>
<activity
androidname=".Nodeweb"
androidalwaysRetainTaskState="true"
androidlaunchMode="singleInstance"
androidconfigChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|keyboard|keyboardHidden|navigation"
>
<meta-data androidname="android.app.lib_name" androidvalue=""/>
</activity>
<activity androidname=".Launcher" androidexported="true">
<meta-data androidname="android.app.lib_name" androidvalue="" />
</activity>
</application>
<uses-sdk androidminSdkVersion="24" androidtargetSdkVersion="26" />
<uses-feature androidglEsVersion="0x00020000" />
<uses-feature androidname="android.hardware.touchscreen" androidrequired="false" />
<uses-feature androidname="android.software.leanback" androidrequired="false" />
<uses-feature androidname="android.hardware.gamepad" androidrequired="false" />
<uses-feature androidname="android.hardware.usb.host" androidrequired="false" />
<uses-feature androidname="android.hardware.bluetooth" androidrequired="false" />
<uses-feature androidname="android.hardware.type.pc" androidrequired="false" />
<uses-permission androidname="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission androidname="android.permission.INTERNET" />
</manifest>
|