Files
Kmake/kmake/Data/android/main/AndroidManifest.xml
2026-05-26 23:36:42 -07:00

26 lines
1.2 KiB
XML

<?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}
<application
android:allowBackup="true"
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="tech.kore.KoreActivity" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
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="kore" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>