AndroidManifest.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. <activity
  13. android:name=".utils.ProcessPhoenix"
  14. android:theme="@android:style/Theme.Translucent.NoTitleBar"
  15. android:process=":phoenix"
  16. android:exported="false"
  17. />
  18. <provider
  19. android:name="androidx.core.content.FileProvider"
  20. android:authorities="${applicationId}.fileprovider"
  21. android:exported="false"
  22. android:grantUriPermissions="true">
  23. <meta-data
  24. android:name="android.support.FILE_PROVIDER_PATHS"
  25. android:resource="@xml/godot_provider_paths" />
  26. </provider>
  27. </application>
  28. </manifest>