Path: blob/master/platform/android/java/lib/AndroidManifest.xml
10279 views
<?xml version="1.0" encoding="utf-8"?>1<manifest xmlns:android="http://schemas.android.com/apk/res/android"2android:versionCode="1"3android:versionName="1.0">45<application>67<!-- Records the version of the Godot library -->8<meta-data9android:name="org.godotengine.library.version"10android:value="${godotLibraryVersion}" />1112<service android:name=".GodotDownloaderService" />1314<activity15android:name=".utils.ProcessPhoenix"16android:theme="@android:style/Theme.Translucent.NoTitleBar"17android:process=":phoenix"18android:exported="false"19/>2021<provider22android:name="androidx.core.content.FileProvider"23android:authorities="${applicationId}.fileprovider"24android:exported="false"25android:grantUriPermissions="true">26<meta-data27android:name="android.support.FILE_PROVIDER_PATHS"28android:resource="@xml/godot_provider_paths" />29</provider>3031</application>3233</manifest>343536