2019-09-02 17:31:51 -07: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-03 21:49:22 -07:00
|
|
|
<!-- Should match the mindSdk and targetSdk values in platform/android/java/app/config.gradle -->
|
|
|
|
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="30" />
|
|
|
|
|
2021-04-16 06:42:44 -07:00
|
|
|
<application>
|
2019-09-02 17:31:51 -07:00
|
|
|
|
2021-02-24 03:49:00 -08:00
|
|
|
<!-- Records the version of the Godot library -->
|
|
|
|
<meta-data
|
|
|
|
android:name="org.godotengine.library.version"
|
|
|
|
android:value="${godotLibraryVersion}" />
|
|
|
|
|
2019-09-02 17:31:51 -07:00
|
|
|
<service android:name=".GodotDownloaderService" />
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
<instrumentation
|
2020-05-27 13:34:40 -07:00
|
|
|
android:name=".GodotInstrumentation"
|
2020-01-06 18:37:39 +00:00
|
|
|
android:icon="@mipmap/icon"
|
2019-09-02 17:31:51 -07:00
|
|
|
android:label="@string/godot_project_name_string"
|
|
|
|
android:targetPackage="org.godotengine.godot" />
|
|
|
|
|
|
|
|
</manifest>
|