LNXSDK/Kha/Tools/khamake/Data/android/main/AndroidManifest.xml

20 lines
832 B
XML
Raw Normal View History

2025-01-22 16:18:30 +01:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="{package}" android:installLocation="{installLocation}">{permissions}
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true">
<activity android:name="tech.kode.kha.KhaActivity"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
android:screenOrientation="{screenOrientation}"
android:launchMode="singleTask"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>