]> gitweb.stoutner.com Git - PrivacyCell.git/blob - app/src/main/res/xml/preferences.xml
20dc85363ecff6d810e4054a8e2a64ecb5456a5a
[PrivacyCell.git] / app / src / main / res / xml / preferences.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2021 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Cell <https://www.stoutner.com/privacy-cell>.
7
8   Privacy Cell is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   Privacy Cell is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with Privacy Cell.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <PreferenceScreen
22     xmlns:app="http://schemas.android.com/apk/res-auto" >
23
24     <PreferenceCategory
25         app:key="@string/monitoring_key"
26         app:title="@string/monitoring" >
27
28         <SwitchPreferenceCompat
29             app:key="@string/realtime_monitoring_key"
30             app:title="@string/realtime_monitoring"
31             app:summary="@string/realtime_monitoring_summary"
32             app:defaultValue="false" />
33
34         <Preference
35             app:key="@string/secure_network_notification_key"
36             app:title="@string/secure_network_notification" />
37
38         <Preference
39             app:key="@string/insecure_network_notification_key"
40             app:title="@string/insecure_network_notification" />
41
42         <Preference
43             app:key="@string/antiquated_network_notification_key"
44             app:title="@string/antiquated_network_notification" />
45
46         <SwitchPreferenceCompat
47             app:key="@string/consider_3g_antiquated_key"
48             app:title="@string/consider_3g_antiquated"
49             app:summary="@string/consider_3g_antiquated_summary"
50             app:defaultValue="false" />
51     </PreferenceCategory>
52
53     <PreferenceCategory
54         app:key="@string/interface_key"
55         app:title="@string/interface_title" >
56
57         <SwitchPreferenceCompat
58             app:key="@string/bottom_app_bar_key"
59             app:title="@string/bottom_app_bar"
60             app:summary="@string/bottom_app_bar_summary"
61             app:defaultValue="false" />
62     </PreferenceCategory>
63 </PreferenceScreen>