mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Due to the nature of how Android app install/uninstall works without root, this requires manual confirmation after a panic was triggered. Closes #211
36 lines
1.0 KiB
XML
36 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<CheckBoxPreference
|
|
android:key="pref_key_lock"
|
|
android:title="@string/lock_setting_title"
|
|
android:summary="@string/lock_setting_summary"
|
|
android:defaultValue="true"/>
|
|
|
|
<PreferenceCategory
|
|
android:title="Destructive Actions">
|
|
|
|
<ListPreference
|
|
android:key="pref_key_panic_app"
|
|
android:title="@string/panic_app_setting_title"
|
|
android:summary="@string/panic_app_setting_summary"
|
|
android:icon="@android:drawable/ic_menu_close_clear_cancel"/>
|
|
|
|
<CheckBoxPreference
|
|
android:key="pref_key_purge"
|
|
android:title="@string/purge_setting_title"
|
|
android:summary="@string/purge_setting_summary"
|
|
android:enabled="false"
|
|
android:defaultValue="false"/>
|
|
|
|
<CheckBoxPreference
|
|
android:key="pref_key_uninstall"
|
|
android:title="@string/uninstall_setting_title"
|
|
android:summary="@string/uninstall_setting_summary"
|
|
android:enabled="false"
|
|
android:defaultValue="false"/>
|
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen> |