]> gitweb.stoutner.com Git - PrivacyCell.git/blob - app/src/main/res/xml/preferences.xml
Release 1.10.
[PrivacyCell.git] / app / src / main / res / xml / preferences.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright 2021-2022 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:defaultValue="false" />
32
33         <Preference
34             app:key="@string/secure_network_notification_key"
35             app:title="@string/secure_network_notification" />
36
37         <Preference
38             app:key="@string/insecure_network_notification_key"
39             app:title="@string/insecure_network_notification" />
40
41         <Preference
42             app:key="@string/antiquated_network_notification_key"
43             app:title="@string/antiquated_network_notification" />
44
45         <SwitchPreferenceCompat
46             app:key="@string/consider_3g_antiquated_key"
47             app:title="@string/consider_3g_antiquated"
48             app:summary="@string/consider_3g_antiquated_summary"
49             app:defaultValue="false" />
50     </PreferenceCategory>
51
52     <PreferenceCategory
53         app:key="@string/interface_key"
54         app:title="@string/interface_title" >
55
56         <SwitchPreferenceCompat
57             app:key="@string/bottom_app_bar_key"
58             app:title="@string/bottom_app_bar"
59             app:summary="@string/bottom_app_bar_summary"
60             app:defaultValue="false" />
61     </PreferenceCategory>
62 </PreferenceScreen>