AndroidManifest.xml 1.2 KB

1234567891011121314151617181920212223242526
  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. <application
  6. android:allowBackup="true"
  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:label="@string/app_name" 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. </application>
  24. </manifest>