2017-11-23 10:19:07 -02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-07-01 21:42:23 +02:00
|
|
|
<PreferenceScreen
|
2018-04-19 17:55:59 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2017-11-23 10:19:07 -02:00
|
|
|
|
2020-07-01 21:42:23 +02:00
|
|
|
<CheckBoxPreference
|
2018-04-19 17:55:59 +02:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="pref_panic_exit"
|
|
|
|
android:summary="@string/panic_exit_summary"
|
|
|
|
android:title="@string/panic_exit_title"/>
|
2017-11-23 10:19:07 -02:00
|
|
|
|
2020-07-01 21:42:23 +02:00
|
|
|
<PreferenceCategory
|
2018-04-19 17:55:59 +02:00
|
|
|
android:key="pref_panic_destructive_actions"
|
|
|
|
android:title="@string/panic_destructive_actions">
|
2017-11-23 10:19:07 -02:00
|
|
|
|
2020-07-01 21:42:23 +02:00
|
|
|
<ListPreference
|
2018-04-19 17:55:59 +02:00
|
|
|
android:key="pref_panic_app"
|
|
|
|
android:summary="@string/panic_app_setting_summary"
|
|
|
|
android:title="@string/panic_app_setting_title"
|
|
|
|
tools:icon="@drawable/ic_cancel"/>
|
2017-11-23 10:19:07 -02:00
|
|
|
|
2019-07-05 19:02:04 +02:00
|
|
|
<org.fdroid.fdroid.panic.DestructiveCheckBoxPreference
|
2018-04-19 17:55:59 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:enabled="false"
|
|
|
|
android:key="pref_panic_hide"
|
|
|
|
android:summary="@string/panic_hide_summary"
|
|
|
|
android:title="@string/panic_hide_title"/>
|
2017-11-23 10:19:07 -02:00
|
|
|
|
2019-07-05 19:02:04 +02:00
|
|
|
<org.fdroid.fdroid.panic.DestructiveCheckBoxPreference
|
2019-05-29 21:00:41 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:enabled="false"
|
|
|
|
android:key="pref_panic_reset_repos"
|
|
|
|
android:summary="@string/panic_reset_repos_summary"
|
|
|
|
android:title="@string/panic_reset_repos_title"/>
|
|
|
|
|
2020-07-01 21:42:23 +02:00
|
|
|
</PreferenceCategory>
|
2017-11-23 10:19:07 -02:00
|
|
|
|
2020-07-01 21:42:23 +02:00
|
|
|
<PreferenceCategory
|
2019-05-28 16:33:27 +02:00
|
|
|
android:key="pref_panic_apps_to_uninstall"
|
|
|
|
android:title="@string/panic_apps_to_uninstall">
|
|
|
|
|
2020-07-01 21:42:23 +02:00
|
|
|
</PreferenceCategory>
|
2019-05-28 16:33:27 +02:00
|
|
|
|
2020-07-01 21:42:23 +02:00
|
|
|
</PreferenceScreen>
|