AndroidManifest.xml.template 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. package="com.godot.game"
  5. android:versionCode="1"
  6. android:versionName="1.0"
  7. android:installLocation="auto"
  8. >
  9. <supports-screens android:smallScreens="true"
  10. android:normalScreens="true"
  11. android:largeScreens="true"
  12. android:xlargeScreens="true"/>
  13. <uses-feature android:glEsVersion="0x00020000" android:required="true" />
  14. $$ADD_PERMISSION_CHUNKS$$
  15. <application android:label="@string/godot_project_name_string" android:icon="@drawable/icon" android:allowBackup="false" tools:ignore="GoogleAppIndexingWarning" $$ADD_APPATTRIBUTE_CHUNKS$$ >
  16. <activity android:name="org.godotengine.godot.Godot"
  17. android:label="@string/godot_project_name_string"
  18. android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
  19. android:launchMode="singleTask"
  20. android:screenOrientation="landscape"
  21. android:configChanges="orientation|keyboardHidden|screenSize|smallestScreenSize"
  22. android:resizeableActivity="false"
  23. tools:ignore="UnusedAttribute">
  24. <intent-filter>
  25. <action android:name="android.intent.action.MAIN" />
  26. <category android:name="android.intent.category.LAUNCHER" />
  27. </intent-filter>
  28. </activity>
  29. <service android:name="org.godotengine.godot.GodotDownloaderService" />
  30. $$ADD_APPLICATION_CHUNKS$$
  31. </application>
  32. </manifest>