AndroidManifest.xml 914 B

12345678910111213141516171819202122232425262728
  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. <!-- Should match the mindSdk and targetSdk values in platform/android/java/app/config.gradle -->
  7. <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="32" />
  8. <application>
  9. <!-- Records the version of the Godot library -->
  10. <meta-data
  11. android:name="org.godotengine.library.version"
  12. android:value="${godotLibraryVersion}" />
  13. <service android:name=".GodotDownloaderService" />
  14. <activity
  15. android:name=".utils.ProcessPhoenix"
  16. android:theme="@android:style/Theme.Translucent.NoTitleBar"
  17. android:process=":phoenix"
  18. android:exported="false"
  19. />
  20. </application>
  21. </manifest>