NeoLaunch_From_Kvaesitso/ui/src/main/AndroidManifest.xml
2021-09-18 23:37:52 +02:00

40 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.mm20.launcher2.ui">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<application>
<activity
android:name=".legacy.activity.LauncherActivity"
android:excludeFromRecents="true"
android:launchMode="singleTask"
android:exported="true"
android:theme="@style/LauncherTheme"
android:windowSoftInputMode="stateHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".activity.ComposeActivity"
android:excludeFromRecents="true"
android:launchMode="singleTask"
android:exported="true"
android:resizeableActivity="false"
android:theme="@style/LauncherTheme"
android:windowSoftInputMode="stateHidden">
</activity>
</application>
</manifest>