diff options
| author | 2021-03-05 14:57:54 -0800 | |
|---|---|---|
| committer | 2021-03-17 21:25:57 +0000 | |
| commit | cc081579a6eb32f2ac602fc88cceaf27aa560f10 (patch) | |
| tree | 6f4cdaee5b4ec92d66f2d5706b7f280a77104dfb | |
| parent | 51755dc6986e04e47cf8a2c3c3b8656e778463a3 (diff) | |
Add resource to disable cb
Bug: 176557108
Test: manual
Change-Id: I060836c10b60638e4155670e16cf6475e6740665
| -rw-r--r-- | core/res/res/values/config.xml | 5 | ||||
| -rw-r--r-- | core/res/res/values/symbols.xml | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index f6fee880bf2f..ab4f123b971c 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -4573,6 +4573,11 @@ check after reboot or airplane mode toggling --> <bool translatable="false" name="reset_geo_fencing_check_after_boot_or_apm">false</bool> + <!-- Boolean indicating whether all CB messages should be disabled on this device. This config + is intended to be used by OEMs who need to disable CB messages for regulatory requirements, + (e.g. the device is a tablet in a country where tablets should not receive CB messages) --> + <bool translatable="false" name="config_disable_all_cb_messages">false</bool> + <!-- Screen Wake Keys Determines whether the specified key groups can be used to wake up the device. --> <bool name="config_wakeOnDpadKeyPress">true</bool> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index ef5191af2e6b..cc13a8afeafd 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -3963,6 +3963,7 @@ <java-symbol type="layout" name="chooser_action_button" /> <java-symbol type="dimen" name="chooser_action_button_icon_size" /> <java-symbol type="string" name="config_defaultNearbySharingComponent" /> + <java-symbol type="bool" name="config_disable_all_cb_messages" /> <java-symbol type="drawable" name="ic_close" /> <java-symbol type="bool" name="config_automotiveHideNavBarForKeyboard" /> |