2019-09-03 02:31:51 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.godotengine.godot"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
|
|
|
|
2021-11-04 05:49:22 +01:00
|
|
|
<!-- Should match the mindSdk and targetSdk values in platform/android/java/app/config.gradle -->
|
2021-07-11 03:39:31 +02:00
|
|
|
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="32" />
|
2021-11-04 05:49:22 +01:00
|
|
|
|
2019-09-03 02:31:51 +02:00
|
|
|
<application>
|
|
|
|
|
2021-02-24 12:49:00 +01:00
|
|
|
<!-- Records the version of the Godot library -->
|
|
|
|
<meta-data
|
|
|
|
android:name="org.godotengine.library.version"
|
|
|
|
android:value="${godotLibraryVersion}" />
|
|
|
|
|
2019-09-03 02:31:51 +02:00
|
|
|
<service android:name=".GodotDownloaderService" />
|
|
|
|
|
2022-05-23 21:33:15 +02:00
|
|
|
<activity
|
|
|
|
android:name=".utils.ProcessPhoenix"
|
|
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar"
|
|
|
|
android:process=":phoenix"
|
|
|
|
android:exported="false"
|
|
|
|
/>
|
2019-09-03 02:31:51 +02:00
|
|
|
|
2022-05-23 21:33:15 +02:00
|
|
|
</application>
|
2019-09-03 02:31:51 +02:00
|
|
|
|
|
|
|
</manifest>
|