mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-05-02 06:33:38 +01:00
Add the ability to opt out of PINs.
This commit is contained in:
22
app/src/main/res/xml/preferences_advanced_pin.xml
Normal file
22
app/src/main/res/xml/preferences_advanced_pin.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?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__disabling_pins_will_create_a_hidden_high_entropy_pin"
|
||||
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>
|
||||
Reference in New Issue
Block a user