AndroidManifest.xml 554 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="org.godotengine.godot"
  4. android:versionCode="1"
  5. android:versionName="1.0">
  6. <application>
  7. <service android:name=".GodotDownloaderService" />
  8. </application>
  9. <instrumentation
  10. android:icon="@mipmap/icon"
  11. android:label="@string/godot_project_name_string"
  12. android:name="org.godotengine.godot.GodotInstrumentation"
  13. android:targetPackage="org.godotengine.godot" />
  14. </manifest>