2010-02-08 20:43:38 +00:00
<PreferenceScreen xmlns:android= "http://schemas.android.com/apk/res/android" >
2010-09-23 19:47:25 +00:00
<PreferenceCategory android:title= "@string/pref_general_group" >
<CheckBoxPreference
android:defaultValue="true"
android:key="pref_start_boot"
android:title="@string/pref_start_boot_title"
android:summary="@string/pref_start_boot_summary"
android:enabled="true"/>
2011-04-17 16:16:31 +00:00
<CheckBoxPreference
android:defaultValue="false"
android:key="has_root"
android:title="@string/pref_has_root"
android:summary="@string/pref_has_root_summary"
android:enabled="true"/>
2010-09-23 19:47:25 +00:00
</PreferenceCategory>
2010-07-23 11:10:00 +00:00
<PreferenceCategory android:title= "@string/pref_trans_proxy_group" >
2010-03-06 14:56:39 +00:00
<CheckBoxPreference
android:defaultValue="false"
android:key="pref_transparent"
2010-07-23 11:10:00 +00:00
android:title="@string/pref_trans_proxy_title"
android:summary="@string/pref_trans_proxy_summary"
2010-03-06 14:56:39 +00:00
android:enabled="true"/>
2010-07-19 22:34:15 +00:00
<CheckBoxPreference
android:defaultValue="false"
android:key="pref_transparent_all"
2010-07-23 11:10:00 +00:00
android:summary="@string/pref_transparent_all_summary"
android:enabled="true"
android:title="@string/pref_transparent_all_title"/>
2010-07-19 22:34:15 +00:00
<Preference
android:defaultValue=""
android:key="pref_transparent_app_list"
android:title="Select Apps"
android:summary="Choose Apps to Route Through Tor"
android:enabled="true"/>
2011-06-02 20:21:38 +00:00
<CheckBoxPreference
android:defaultValue="false"
android:key="pref_transparent_tethering"
android:summary="@string/pref_transparent_tethering_summary"
android:enabled="true"
android:title="@string/pref_transparent_tethering_title"/>
2010-07-19 22:34:15 +00:00
2010-03-06 14:56:39 +00:00
</PreferenceCategory>
2011-05-17 02:02:36 +00:00
<PreferenceCategory android:title= "Node Configuration" android:summary= "These are advanced settings that can reduce your anonymity" >
<EditTextPreference android:key= "pref_entrance_nodes"
android:title="Entrance Nodes"
android:summary="Fingerprints, nicks, countries and addresses for the first hop"
android:dialogTitle="Enter Entrance Nodes"
/>
2011-05-16 03:49:36 +00:00
<EditTextPreference android:key= "pref_exit_nodes"
android:title="Exit Nodes"
2011-05-17 02:02:36 +00:00
android:summary="Fingerprints, nicks, countries and addresses for the last hop"
2011-05-16 03:49:36 +00:00
android:dialogTitle="Enter Exit Nodes"
/>
2011-05-17 02:02:36 +00:00
<EditTextPreference android:key= "pref_exclude_nodes"
android:title="Exclude Nodes"
android:summary="Fingerprints, nicks, countries and addresses to exclude"
android:dialogTitle="Enter Exclude Nodes"
/>
2011-05-16 03:49:36 +00:00
<CheckBoxPreference android:defaultValue= "false"
2011-05-17 02:02:36 +00:00
android:title="Strict Nodes" android:key="pref_strict_nodes"
android:summary="Use *only* these specified nodes"/>
2011-05-16 03:49:36 +00:00
</PreferenceCategory>
2010-03-06 14:56:39 +00:00
<PreferenceCategory android:title= "Bridges" >
2010-02-08 20:43:38 +00:00
<CheckBoxPreference android:defaultValue= "false"
android:title="Use Bridges" android:key="pref_bridges_enabled"
android:summary="Enable alternate entrance nodes into the Tor Network"></CheckBoxPreference>
2010-05-08 04:55:37 +00:00
<!-- 5/8/2010 NF: Arma says this doesn't actually work, so commenting out for now
2010-02-08 20:43:38 +00:00
<CheckBoxPreference android:defaultValue= "false"
2010-03-06 14:56:39 +00:00
android:title="Update from Authority" android:key="pref_bridges_update"
2010-02-08 20:43:38 +00:00
android:summary="Modify bridge list automatically"></CheckBoxPreference>
2010-05-08 04:55:37 +00:00
-->
2010-03-06 17:04:18 +00:00
<EditTextPreference android:key= "pref_bridges_list"
2010-02-08 20:43:38 +00:00
android:title="Bridges"
2010-02-10 07:00:47 +00:00
android:summary="IP address and port of bridges"
2010-02-08 20:43:38 +00:00
android:dialogTitle="Enter Bridge Addresses"
/>
2010-03-06 14:56:39 +00:00
</PreferenceCategory>
2010-02-08 20:43:38 +00:00
2010-02-24 05:09:05 +00:00
2010-03-06 14:56:39 +00:00
<PreferenceCategory android:title= "Relays" >
2010-03-06 00:46:46 +00:00
<CheckBoxPreference android:key= "pref_or"
2010-03-06 00:44:56 +00:00
android:defaultValue="false"
2010-02-08 20:43:38 +00:00
android:title="Relaying"
2010-03-08 07:01:11 +00:00
android:summary="Enable your device to be a non-exit relay"
2010-03-06 04:11:36 +00:00
android:enabled="true"
2010-02-08 20:43:38 +00:00
/>
2010-03-06 00:46:46 +00:00
<EditTextPreference android:key= "pref_or_port"
2010-03-06 00:44:56 +00:00
android:defaultValue="9001"
android:title="Relay Port"
android:summary="Listening port for your Tor relay"
android:dialogTitle="Enter OR port"
/>
2010-03-06 01:07:19 +00:00
<EditTextPreference android:key= "pref_or_nickname"
android:defaultValue="Orbot"
android:title="Relay nickname"
android:summary="The nickname for your Tor relay"
android:dialogTitle="Enter a custom relay nickname"
/>
2010-03-06 14:56:39 +00:00
</PreferenceCategory>
2010-02-24 05:09:05 +00:00
2010-03-06 04:46:53 +00:00
<PreferenceCategory android:title= "ReachableAddresses" >
2010-03-06 01:27:51 +00:00
<CheckBoxPreference
2010-03-06 04:46:53 +00:00
android:key="pref_reachable_addresses"
android:defaultValue="false"
android:title="ReachableAddresses"
2010-02-08 20:43:38 +00:00
android:summary="Run as a client behind a firewall with restrictive policies"
2010-03-06 14:56:39 +00:00
android:enabled="true"></CheckBoxPreference>
2010-02-08 20:43:38 +00:00
2010-03-06 04:46:53 +00:00
<EditTextPreference
android:key="pref_reachable_addresses_ports"
android:defaultValue="*:80,*:443"
2010-03-06 00:44:56 +00:00
android:title="Reachable ports"
android:summary="Ports reachable behind a restrictive firewall"
android:dialogTitle="Enter ports"
/>
2010-03-06 04:46:53 +00:00
</PreferenceCategory>
2010-03-06 00:44:56 +00:00
2011-04-17 16:16:31 +00:00
<PreferenceCategory android:title= "@string/pref_hs_group" >
<CheckBoxPreference android:title= "Enable Hidden Services" android:summary= "run servers accessible via the Tor network" android:key= "pref_hs_enable" > </CheckBoxPreference>
2010-08-14 05:08:55 +00:00
<EditTextPreference android:summary= "enter localhost ports for hidden services" android:title= "Hidden Service Ports" android:enabled= "false" android:key= "pref_hs_ports" > </EditTextPreference>
<EditTextPreference android:key= "pref_hs_hostname" android:summary= "the addressable name for your hidden service (generated automatically)" android:title= ".Onion Hostname" > </EditTextPreference>
</PreferenceCategory>
2011-04-17 16:16:31 +00:00
<PreferenceCategory android:title= "Debug" >
<CheckBoxPreference
android:key="pref_enable_logging"
android:defaultValue="false"
android:title="Debug Log"
android:summary="enable debug log to output (must use adb or aLogCat to view)"
android:enabled="true"></CheckBoxPreference>
<CheckBoxPreference
android:defaultValue="false"
android:key="pref_transparent_port_fallback"
android:summary="@string/pref_transparent_port_fallback_summary"
android:enabled="true"
android:title="@string/pref_transparent_port_fallback_title"/>
<EditTextPreference android:key= "pref_port_list"
android:defaultValue="80,443,8080,8888,8443"
android:title="@string/pref_transparent_port_title"
android:summary="@string/pref_transparent_port_summary"
android:dialogTitle="@string/pref_transparent_port_dialog"
/>
</PreferenceCategory>
2010-03-06 00:44:56 +00:00
</PreferenceScreen>