blob: ea44ce0240eeccf62073c860e988ba80d24d7858 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android"
>
<SwitchPreference
android:key="use_automatic_dns_server_discovery"
android:defaultValue="true"
android:title="Use automatic DNS Server / Pihole discovery"
android:summary="Whether to use the automatic discovery mechanism to set the DNS server"
/>
<SwitchPreference
android:key="use_wifi_listener"
android:defaultValue="false"
android:title="Use WiFi listener"
android:summary="Automatically de/activates the proxy on WiFi dis/connect"
/>
<!-- USE_WIFI_LISTENER -->
<!-- SELECT_FROM_KNOWN_SSIDS -->
<!-- <MultiSelectListPreference -->
<!-- android:id="@+id/known_ssids" -->
<!-- android:key="known_ssids" -->
<!-- android:entries="" -->
<!-- android:entryValues="" -->
<!-- /> -->
<!-- USE_AUTOMATIC_DNS/PIHOLE_SERVER_DISCOVERY -->
<!-- SET_MANUAL_DNS/PIHOLE_SERVER_IP -->
</PreferenceScreen>
|