AndroidManifest.xml 1.3 KB

12345678910111213141516171819202122232425
  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" android:installLocation="{installLocation}">
  4. {permissions}
  5. <uses-feature android:name="android.hardware.vulkan.version" android:required="true" android:version="0x403000" />
  6. <application
  7. android:icon="@mipmap/ic_launcher"
  8. android:label="@string/app_name"
  9. android:roundIcon="@mipmap/ic_launcher_round"
  10. android:supportsRtl="true"
  11. tools:targetApi="{targetSdkVersion}">
  12. <activity
  13. android:name="org.armory3d.IronActivity" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|screenLayout|smallestScreenSize"
  14. android:exported="true" android:screenOrientation="{screenOrientation}"
  15. android:launchMode="singleTask"
  16. android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
  17. <meta-data android:name="android.app.lib_name" android:value="iron" />
  18. <intent-filter>
  19. <action android:name="android.intent.action.MAIN" />
  20. <category android:name="android.intent.category.LAUNCHER" />
  21. </intent-filter>
  22. </activity>
  23. <activity android:name="org.armory3d.ErrorActivity" />
  24. </application>
  25. </manifest>