-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
40 lines (34 loc) · 1.84 KB
/
AndroidManifest.xml
File metadata and controls
40 lines (34 loc) · 1.84 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" package="com.knossosnet.knossosnet">
<uses-permission android:name="android.permission.INTERNET" />
<uses-feature android:glEsVersion="0x00030002" android:required="true" />
<!-- Touchscreen support -->
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<!-- Game controller support -->
<uses-feature android:name="android.hardware.bluetooth" android:required="false" />
<uses-feature android:name="android.hardware.gamepad" android:required="false" />
<uses-feature android:name="android.hardware.usb.host" android:required="false" />
<!-- External mouse input events -->
<uses-feature android:name="android.hardware.type.pc" android:required="false" />
<uses-permission android:name="android.permission.VIBRATE" />
<!-- Allow access to Bluetooth devices -->
<!-- Currently this is just for Steam Controller support and requires setting SDL_HINT_JOYSTICK_HIDAPI_STEAM -->
<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
<application android:label="Knossos.NET"
android:icon="@drawable/Icon"
android:hardwareAccelerated="true"
android:isGame="true"
android:supportsRtl="true"
android:extractNativeLibs="true">
<activity
android:name=".GameActivity"
android:exported="false"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:screenOrientation="sensorLandscape"
android:immersive="true"
android:process=":game"
android:launchMode="singleTask">
</activity>
</application>
</manifest>