Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/platform/android/java/app/src/main/AndroidManifest.xml
21066 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
xmlns:tools="http://schemas.android.com/tools"
4
android:versionCode="1"
5
android:versionName="1.0"
6
android:installLocation="auto" >
7
8
<supports-screens
9
android:smallScreens="true"
10
android:normalScreens="true"
11
android:largeScreens="true"
12
android:xlargeScreens="true" />
13
14
<uses-feature
15
android:glEsVersion="0x00030000"
16
android:required="true" />
17
18
<application
19
android:label="@string/godot_project_name_string"
20
android:allowBackup="false"
21
android:icon="@mipmap/icon"
22
android:appCategory="game"
23
android:isGame="true"
24
android:hasFragileUserData="false"
25
android:requestLegacyExternalStorage="false"
26
tools:ignore="GoogleAppIndexingWarning" >
27
<profileable
28
android:shell="true"
29
android:enabled="true"
30
tools:targetApi="29" />
31
32
<activity
33
android:name=".GodotApp"
34
android:theme="@style/GodotAppSplashTheme"
35
android:launchMode="singleInstancePerTask"
36
android:excludeFromRecents="false"
37
android:exported="false"
38
android:screenOrientation="landscape"
39
android:windowSoftInputMode="adjustResize"
40
android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"
41
android:resizeableActivity="false"
42
tools:ignore="UnusedAttribute" />
43
<activity-alias
44
android:name=".GodotAppLauncher"
45
android:targetActivity=".GodotApp"
46
android:exported="true">
47
<intent-filter>
48
<action android:name="android.intent.action.MAIN" />
49
<category android:name="android.intent.category.DEFAULT" />
50
<category android:name="android.intent.category.LAUNCHER" />
51
</intent-filter>
52
</activity-alias>
53
54
</application>
55
56
</manifest>
57
58