diff options
| author | 2020-03-25 16:48:55 +0100 | |
|---|---|---|
| committer | 2020-03-26 11:40:28 +0100 | |
| commit | b175d57293aa4f15cfa3a584c71757c99a888195 (patch) | |
| tree | 352537fdbbd610a7fc9b8859ab57c9c0a6d7bd46 | |
| parent | 3fe54949f896da910682708c505ecd00684c1b18 (diff) | |
Add config to show assistant above the dream
Bug: 152425699
Test: m && flashall && verify that assistant shows below the dream on
phones and above the dream on tvs
Change-Id: I9a51924705b0eb9cdf31fa74d9ced2c151d5c7cb
| -rw-r--r-- | core/res/res/values/config.xml | 3 | ||||
| -rw-r--r-- | core/res/res/values/symbols.xml | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index e3a73377e365..28dcc2fdb573 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -4424,4 +4424,7 @@ <!-- Set to true to enable the user switcher on the keyguard. --> <bool name="config_keyguardUserSwitcher">false</bool> + <!-- Set to true to make assistant show in front of the dream/screensaver. --> + <bool name="config_assistantOnTopOfDream">false</bool> + </resources> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index 0adef7513bb5..4d850a885b73 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -3953,4 +3953,7 @@ <!-- Set to true to enable the user switcher on the keyguard. --> <java-symbol type="bool" name="config_keyguardUserSwitcher" /> + + <!-- Set to true to make assistant show in front of the dream/screensaver. --> + <java-symbol type="bool" name="config_assistantOnTopOfDream"/> </resources> |