blob: 6dbf58bfb676cf6f93bfd969cbcfed109b5739b3 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<CheckBoxPreference
android:defaultValue="true"
android:key="netchangereconnect"
android:summary="@string/netchange_summary"
android:title="@string/netchange" />
<CheckBoxPreference
android:defaultValue="true"
android:key="showlogwindow"
android:summary="@string/show_log_summary"
android:title="@string/show_log_window" />
<!--
<CheckBoxPreference
android:defaultValue="false"
android:key="statusafterconnect"
android:summary="@string/keppstatus_summary"
android:title="@string/keepstatus" />
-->
<CheckBoxPreference
android:defaultValue="true"
android:key="usesystemproxy"
android:summary="@string/use_system_proxy_summary"
android:title="@string/use_system_proxy" />
<CheckBoxPreference
android:defaultValue="false"
android:key="restartvpnonboot"
android:summary="@string/onbootrestartsummary"
android:title="@string/onbootrestart" />
<Preference
android:key="clearapi"
android:title="Clear allowed external apps"
android:persistent="false" />
<PreferenceCategory android:title="Device specifics Hacks" >
<CheckBoxPreference
android:defaultValue="false"
android:key="useCM9Fix"
android:summary="@string/owner_fix_summary"
android:title="@string/owner_fix" />
<CheckBoxPreference
android:defaultValue="false"
android:key="loadTunModule"
android:summary="@string/setting_loadtun_summary"
android:title="@string/setting_loadtun" />
</PreferenceCategory>
</PreferenceScreen>
|