1<?xml version="1.0" encoding="utf-8"?>
2<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
3
4 <Preference
5 android:key="backup_warning"
6 android:summary="@string/pref_create_backup_warning" />
7
8 <ListPreference
9 android:defaultValue="@integer/automatic_message_deletion"
10 android:icon="@drawable/ic_calendar_month_24dp"
11 android:key="recurring_backup"
12 android:title="@string/pref_backup_recurring" />
13
14 <Preference
15 android:icon="@drawable/ic_archive_24dp"
16 android:key="create_one_off_backup"
17 android:summary="@string/pref_create_backup_one_off_summary"
18 android:title="@string/pref_create_backup" />
19
20 <Preference
21 android:icon="@drawable/ic_archive_24dp"
22 android:key="export"
23 android:summary="@string/pref_export_summary"
24 android:title="@string/pref_export" />
25
26 <Preference
27 android:key="backup_directory"
28 android:summary="@string/pref_create_backup_summary" />
29 android:icon="@drawable/ic_folder_open_24dp"
30 android:key="backup_location"
31 android:summary="@string/pref_create_backup_summary"
32 android:title="@string/pref_backup_location" />
33
34</PreferenceScreen>