AndroidManifest.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:versionCode="1"
  4. android:versionName="1.0">
  5. <application>
  6. <!-- Records the version of the Godot library -->
  7. <meta-data
  8. android:name="org.godotengine.library.version"
  9. android:value="${godotLibraryVersion}" />
  10. <service android:name=".GodotDownloaderService" />
  11. <activity
  12. android:name=".utils.ProcessPhoenix"
  13. android:theme="@android:style/Theme.Translucent.NoTitleBar"
  14. android:process=":phoenix"
  15. android:exported="false"
  16. />
  17. <provider
  18. android:name="androidx.core.content.FileProvider"
  19. android:authorities="${applicationId}.fileprovider"
  20. android:exported="false"
  21. android:grantUriPermissions="true">
  22. <meta-data
  23. android:name="android.support.FILE_PROVIDER_PATHS"
  24. android:resource="@xml/godot_provider_paths" />
  25. </provider>
  26. </application>
  27. </manifest>