20 lines
832 B
XML
20 lines
832 B
XML
<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>
|