diff options
author | Danny Lin <danny@kdrag0n.dev> | 2022-03-22 19:52:12 -0700 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2022-05-05 15:50:12 +0800 |
commit | 69f6379ae52311895179b4642bfd57e9385f41a3 (patch) | |
tree | 6c955d130504b67e13b0e4737d6815269eff0fb0 | |
parent | a405279858cb0c59b9e82f4d7da5a1b9f1b4b2f0 (diff) |
overlay: Convert location indicators to soft config
Along with SimpleDeviceConfig and Settings updates, this allows users to
toggle location indiactors while still shipping it enabled by default.
Change-Id: Ibb5bb0abdd50198a85885123a54582cc3e43f6db
-rw-r--r-- | overlay/ICESimpleDeviceConfigOverlay/res/values/config.xml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/overlay/ICESimpleDeviceConfigOverlay/res/values/config.xml b/overlay/ICESimpleDeviceConfigOverlay/res/values/config.xml index 4a38988..02c3865 100644 --- a/overlay/ICESimpleDeviceConfigOverlay/res/values/config.xml +++ b/overlay/ICESimpleDeviceConfigOverlay/res/values/config.xml @@ -56,8 +56,6 @@ <item>systemui/back_gesture_ml_model_name=backgesture</item> <item>systemui/back_gesture_ml_model_threshold=0.8</item> - <!-- Use new privacy indicators for location --> - <item>privacy/location_indicators_enabled=true</item> <!-- Allow users to disable location indicators in Developer Options --> <item>privacy/location_indicator_settings_enabled=true</item> @@ -121,4 +119,9 @@ <item>device_personalization_services/NotificationAssistant__enable_service=false</item> <item>device_personalization_services/VisualCortex__enable=false</item> </string-array> + + <string-array name="configs_base_soft"> + <!-- Use new privacy indicators for location --> + <item>privacy/location_indicators_enabled=true</item> + </string-array> </resources> |