2021-09-18 23:37:52 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-05-09 19:56:05 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2021-09-18 23:37:52 +02:00
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
<application>
|
|
|
|
|
|
|
|
|
|
<activity
|
2022-01-25 17:55:57 +01:00
|
|
|
android:name=".launcher.LauncherActivity"
|
2021-09-18 23:37:52 +02:00
|
|
|
android:excludeFromRecents="true"
|
|
|
|
|
android:exported="true"
|
2022-02-14 22:40:46 +01:00
|
|
|
android:launchMode="singleTask"
|
2021-09-18 23:37:52 +02:00
|
|
|
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>
|
|
|
|
|
|
2021-12-06 21:48:41 +01:00
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.app.shortcuts"
|
|
|
|
|
android:resource="@xml/debug_shortcuts" />
|
|
|
|
|
|
2021-09-18 23:37:52 +02:00
|
|
|
</activity>
|
2022-01-01 20:16:30 +01:00
|
|
|
<activity
|
|
|
|
|
android:name=".settings.SettingsActivity"
|
2022-02-14 22:40:46 +01:00
|
|
|
android:exported="true"
|
2022-02-19 13:16:36 +01:00
|
|
|
android:label="@string/settings"
|
2022-01-01 20:16:30 +01:00
|
|
|
android:launchMode="singleTask"
|
2022-01-25 17:55:57 +01:00
|
|
|
android:parentActivityName=".launcher.LauncherActivity"
|
2022-01-01 20:16:30 +01:00
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:taskAffinity="de.mm20.launcher2.settings"
|
|
|
|
|
android:theme="@style/SettingsTheme.NoActionBar">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2022-01-25 17:55:57 +01:00
|
|
|
android:value="de.mm20.launcher2.ui.launcher.LauncherActivity" />
|
2022-01-01 20:16:30 +01:00
|
|
|
</activity>
|
2022-02-16 23:08:06 +01:00
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".launcher.widgets.picker.PickAppWidgetActivity"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
|
android:parentActivityName=".launcher.LauncherActivity"
|
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
|
android:taskAffinity="de.mm20.launcher2.settings"
|
|
|
|
|
android:theme="@style/SettingsTheme.NoActionBar">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
|
android:value="de.mm20.launcher2.ui.launcher.LauncherActivity" />
|
|
|
|
|
</activity>
|
2021-09-18 23:37:52 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|