22 lines
833 B
XML
22 lines
833 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<Preference
|
|
android:key="pref_pin_disable"
|
|
android:title="@string/preferences__disable_pin"
|
|
android:summary="@string/preferences__if_you_disable_the_pin_you_will_lose_all_data"
|
|
app:isPreferenceVisible="false"
|
|
tools:isPreferenceVisible="true"/>
|
|
|
|
<Preference
|
|
android:key="pref_pin_enable"
|
|
android:title="@string/preferences__enable_pin"
|
|
android:summary="@string/preferences__pins_keep_information_stored_with_signal_encrypted_so_only_you_can_access_it"
|
|
app:isPreferenceVisible="false"
|
|
tools:isPreferenceVisible="true"/>
|
|
|
|
</PreferenceScreen>
|