diff options
| author | 2024-07-19 10:45:41 +0000 | |
|---|---|---|
| committer | 2024-07-22 14:49:59 +0000 | |
| commit | 945a87611c15de0c03784cad9b0b9325c8e8a0cd (patch) | |
| tree | d2f32b93a1ed7d53401f79431fdc93c1b83e119c | |
| parent | 77339b9b093d91a98d5b1ed3b3dadbe9a46fd5b4 (diff) | |
Define new config to enable Private space Hide Illustration
Allow partners to disable the search tile content and hide illustration
in Hide Private Space Settings page.
By default this is set to true which will be used in Pixel.
OEM can set value of config_enableSearchTileHideIllustrationInPrivateSpace in the device
overlay file to false to disable it.
Bug: 346612477
Test: Build
Flag: EXEMPT resource only update
Change-Id: I3d9a932edbcf91dc5a94177d48a3d798dbdb2405
| -rw-r--r-- | core/res/res/values/config.xml | 4 | ||||
| -rw-r--r-- | core/res/res/values/symbols.xml | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index 236e7c5b7a62..a460b06eeea8 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -7093,4 +7093,8 @@ <!-- Whether to enable usb state update via udc sysfs. --> <bool name="config_enableUdcSysfsUsbStateUpdate">false</bool> + + <!-- Whether to enable the private space search illustration and search tile content in "Hide Private Space" settings page. + OEM/Partner can explicitly opt to hide the illustration and search tile content. --> + <bool name="config_enableSearchTileHideIllustrationInPrivateSpace">true</bool> </resources> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index 09688f2f7bec..5b588e1e7b56 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -524,6 +524,7 @@ <java-symbol type="bool" name="config_notificationCloseButtonSupported"/> <java-symbol type="bool" name="config_enableGaiaEducationInPrivateSpace"/> <java-symbol type="bool" name="config_enableUdcSysfsUsbStateUpdate"/> + <java-symbol type="bool" name="config_enableSearchTileHideIllustrationInPrivateSpace"/> <java-symbol type="color" name="tab_indicator_text_v4" /> |