We don't use lineage-sdk anymore and instead push spninfo to our vendor repo. No dialer patches needed anymore.
42 lines
1.5 KiB
Diff
42 lines
1.5 KiB
Diff
From 94e3b8c516fb084eb8b76f71e3bf2de20ace6a3d Mon Sep 17 00:00:00 2001
|
|
From: Danny Lin <danny@kdrag0n.dev>
|
|
Date: Mon, 11 Oct 2021 20:48:44 -0700
|
|
Subject: [PATCH 1/3] Expose themed icon setting in ThemePicker
|
|
|
|
Change-Id: I44e9288c3de13a3604b7a03857ec400753317d9a
|
|
---
|
|
AndroidManifest.xml | 3 +++
|
|
quickstep/AndroidManifest-launcher.xml | 3 +++
|
|
2 files changed, 6 insertions(+)
|
|
|
|
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
|
|
index 1bce9b3..030c67b 100644
|
|
--- a/AndroidManifest.xml
|
|
+++ b/AndroidManifest.xml
|
|
@@ -68,6 +68,9 @@
|
|
<meta-data
|
|
android:name="com.android.launcher3.grid.control"
|
|
android:value="${packageName}.grid_control" />
|
|
+ <meta-data
|
|
+ android:name="com.android.launcher3.themedicon.option"
|
|
+ android:value="${packageName}.grid_control" />
|
|
</activity>
|
|
|
|
</application>
|
|
diff --git a/quickstep/AndroidManifest-launcher.xml b/quickstep/AndroidManifest-launcher.xml
|
|
index d6aa886..080c4d6 100644
|
|
--- a/quickstep/AndroidManifest-launcher.xml
|
|
+++ b/quickstep/AndroidManifest-launcher.xml
|
|
@@ -66,6 +66,9 @@
|
|
<meta-data
|
|
android:name="com.android.launcher3.grid.control"
|
|
android:value="${packageName}.grid_control" />
|
|
+ <meta-data
|
|
+ android:name="com.android.launcher3.themedicon.option"
|
|
+ android:value="${packageName}.grid_control" />
|
|
</activity>
|
|
|
|
</application>
|
|
--
|
|
2.48.1
|
|
|