| 12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools" android:installLocation="{installLocation}">
- {permissions}
- <uses-feature android:name="android.hardware.vulkan.version" android:required="true" android:version="0x403000" />
- <application
- android:icon="@mipmap/ic_launcher"
- android:label="@string/app_name"
- android:roundIcon="@mipmap/ic_launcher_round"
- android:supportsRtl="true"
- tools:targetApi="{targetSdkVersion}">
- <activity
- android:name="org.armory3d.IronActivity" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|screenLayout|smallestScreenSize"
- android:exported="true" android:screenOrientation="{screenOrientation}"
- android:launchMode="singleTask"
- android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
- <meta-data android:name="android.app.lib_name" android:value="iron" />
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity android:name="org.armory3d.ErrorActivity" />
- </application>
- </manifest>
|