AndroidManifest.xml 724 B

123456789101112131415161718192021222324
  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. <!-- Records the version of the Godot library -->
  8. <meta-data
  9. android:name="org.godotengine.library.version"
  10. android:value="${godotLibraryVersion}" />
  11. <service android:name=".GodotDownloaderService" />
  12. </application>
  13. <instrumentation
  14. android:name=".GodotInstrumentation"
  15. android:icon="@mipmap/icon"
  16. android:label="@string/godot_project_name_string"
  17. android:targetPackage="org.godotengine.godot" />
  18. </manifest>