AndroidManifest.xml.template 1.6 KB

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