diff options
Diffstat (limited to 'src/main/res/xml/preferences.xml')
-rw-r--r-- | src/main/res/xml/preferences.xml | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/src/main/res/xml/preferences.xml b/src/main/res/xml/preferences.xml index cee43491..751f3bec 100644 --- a/src/main/res/xml/preferences.xml +++ b/src/main/res/xml/preferences.xml @@ -163,7 +163,13 @@ android:key="expert" android:summary="@string/pref_expert_options_summary" android:title="@string/pref_expert_options"> - <PreferenceCategory android:title="@string/pref_security_settings"> + <PreferenceCategory android:title="@string/pref_security_settings" + android:key="security_options"> + <CheckBoxPreference + android:defaultValue="true" + android:key="btbv" + android:title="@string/pref_blind_trust_before_verification" + android:summary="@string/pref_blind_trust_before_verification_summary"/> <CheckBoxPreference android:defaultValue="false" android:key="dont_save_encrypted" @@ -184,6 +190,14 @@ android:title="@string/pref_allow_message_correction" android:summary="@string/pref_allow_message_correction_summary"/> <Preference + android:key="clean_cache" + android:summary="@string/pref_clean_cache_summary" + android:title="@string/pref_clean_cache"/> + <Preference + android:key="clean_private_storage" + android:summary="@string/pref_clean_private_storage_summary" + android:title="@string/pref_clean_private_storage"/> + <Preference android:key="delete_omemo_identities" android:title="@string/pref_delete_omemo_identities" android:summary="@string/pref_delete_omemo_identities_summary"/> @@ -254,7 +268,7 @@ android:title="@string/pref_use_indicate_received"/> <CheckBoxPreference android:defaultValue="false" - android:key="keep_foreground_service" + android:key="enable_foreground_service" android:summary="@string/pref_keep_foreground_service_summary" android:title="@string/pref_keep_foreground_service"/> <Preference |