Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/platform/android/java/app/AndroidManifest.xml
10279 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:label="@string/godot_project_name_string"
35
android:theme="@style/GodotAppSplashTheme"
36
android:launchMode="singleInstancePerTask"
37
android:excludeFromRecents="false"
38
android:exported="true"
39
android:screenOrientation="landscape"
40
android:windowSoftInputMode="adjustResize"
41
android:configChanges="layoutDirection|locale|orientation|keyboardHidden|screenSize|smallestScreenSize|density|keyboard|navigation|screenLayout|uiMode"
42
android:resizeableActivity="false"
43
tools:ignore="UnusedAttribute" >
44
45
<intent-filter>
46
<action android:name="android.intent.action.MAIN" />
47
<category android:name="android.intent.category.DEFAULT" />
48
<category android:name="android.intent.category.LAUNCHER" />
49
</intent-filter>
50
</activity>
51
52
</application>
53
54
</manifest>
55
56