Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/platform/android/java/lib/AndroidManifest.xml
10279 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
android:versionCode="1"
4
android:versionName="1.0">
5
6
<application>
7
8
<!-- Records the version of the Godot library -->
9
<meta-data
10
android:name="org.godotengine.library.version"
11
android:value="${godotLibraryVersion}" />
12
13
<service android:name=".GodotDownloaderService" />
14
15
<activity
16
android:name=".utils.ProcessPhoenix"
17
android:theme="@android:style/Theme.Translucent.NoTitleBar"
18
android:process=":phoenix"
19
android:exported="false"
20
/>
21
22
<provider
23
android:name="androidx.core.content.FileProvider"
24
android:authorities="${applicationId}.fileprovider"
25
android:exported="false"
26
android:grantUriPermissions="true">
27
<meta-data
28
android:name="android.support.FILE_PROVIDER_PATHS"
29
android:resource="@xml/godot_provider_paths" />
30
</provider>
31
32
</application>
33
34
</manifest>
35
36