mirror of
https://github.com/ponces/treble_aosp.git
synced 2025-05-08 15:27:35 +00:00
58 lines
2.1 KiB
Diff
58 lines
2.1 KiB
Diff
From 78f678c1c2fa3bf18cfcb641296b0776c603eab9 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 +++
|
|
go/AndroidManifest-launcher.xml | 3 +++
|
|
quickstep/AndroidManifest-launcher.xml | 3 +++
|
|
3 files changed, 9 insertions(+)
|
|
|
|
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
|
|
index 517bd6d70e..89291c1ff9 100644
|
|
--- a/AndroidManifest.xml
|
|
+++ b/AndroidManifest.xml
|
|
@@ -67,6 +67,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/go/AndroidManifest-launcher.xml b/go/AndroidManifest-launcher.xml
|
|
index 2223036a7a..c7562f114e 100644
|
|
--- a/go/AndroidManifest-launcher.xml
|
|
+++ b/go/AndroidManifest-launcher.xml
|
|
@@ -65,6 +65,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 c6e2d8cb74..1d7405e345 100644
|
|
--- a/quickstep/AndroidManifest-launcher.xml
|
|
+++ b/quickstep/AndroidManifest-launcher.xml
|
|
@@ -65,6 +65,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.34.1
|
|
|