mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-21 17:05:39 +03:00
Voice Broadcast - Hide labs setting in Android < 10
This commit is contained in:
parent
050dff6548
commit
036511400e
2 changed files with 14 additions and 1 deletions
13
vector-config/src/main/res/values-v29/config-settings.xml
Executable file
13
vector-config/src/main/res/values-v29/config-settings.xml
Executable file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<!-- This file contains values to show or hide some settings, and default values for some settings
|
||||
- boolean keys ending with "_visible" set the visibility of the setting
|
||||
- boolean keys ending with "_default" set the default value of the setting
|
||||
When a setting is hidden, the default value still applies
|
||||
-->
|
||||
|
||||
<!-- Level 1: Labs -->
|
||||
<bool name="settings_labs_enable_voice_broadcast_visible">true</bool>
|
||||
|
||||
</resources>
|
|
@ -49,7 +49,7 @@
|
|||
<bool name="settings_timeline_show_live_sender_info_default">false</bool>
|
||||
<bool name="settings_labs_rich_text_editor_visible">true</bool>
|
||||
<bool name="settings_labs_rich_text_editor_default">false</bool>
|
||||
<bool name="settings_labs_enable_voice_broadcast_visible">true</bool>
|
||||
<bool name="settings_labs_enable_voice_broadcast_visible">false</bool> <!-- Note: also defined in values-v29 -->
|
||||
<bool name="settings_labs_enable_voice_broadcast_default">false</bool>
|
||||
<!-- Level 1: Advanced settings -->
|
||||
|
||||
|
|
Loading…
Reference in a new issue