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">
|
|
|
|
|
|
|
|
<application>
|
|
|
|
|
|
|
|
<service android:name=".GodotDownloaderService" />
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
<instrumentation
|
2020-01-06 19:37:39 +01:00
|
|
|
android:icon="@mipmap/icon"
|
2019-09-03 02:31:51 +02:00
|
|
|
android:label="@string/godot_project_name_string"
|
2020-03-05 19:00:28 +01:00
|
|
|
android:name="org.godotengine.godot.GodotInstrumentation"
|
2019-09-03 02:31:51 +02:00
|
|
|
android:targetPackage="org.godotengine.godot" />
|
|
|
|
|
|
|
|
</manifest>
|