Unclutter this mess we call LauncherActivity

also migrate search bar to Jetpack Compose
This commit is contained in:
MM20
2022-01-25 17:55:57 +01:00
parent 0447d3072d
commit f701e90c47
37 changed files with 1471 additions and 1183 deletions

View File

@@ -6,7 +6,7 @@
<application>
<activity
android:name=".legacy.activity.LauncherActivity"
android:name=".launcher.LauncherActivity"
android:excludeFromRecents="true"
android:launchMode="singleTask"
android:exported="true"
@@ -46,7 +46,7 @@
android:label="@string/title_activity_settings"
android:launchMode="singleTask"
android:exported="true"
android:parentActivityName=".legacy.activity.LauncherActivity"
android:parentActivityName=".launcher.LauncherActivity"
android:screenOrientation="portrait"
android:taskAffinity="de.mm20.launcher2.settings"
android:theme="@style/SettingsTheme.NoActionBar">
@@ -56,7 +56,7 @@
</intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="de.mm20.launcher2.ui.legacy.activity.LauncherActivity" />
android:value="de.mm20.launcher2.ui.launcher.LauncherActivity" />
</activity>
</application>