OmniGears: Option to disable Captive Portal to disable Google connectivity check
Add switch to disable Captive Portal to disable Google connectivity check
Change-Id: I4d1056b7e4bf31b3fc39d3dc7069fc057e5006c1
diff --git a/res/values/custom_strings.xml b/res/values/custom_strings.xml
index aa51e77..372d08b 100644
--- a/res/values/custom_strings.xml
+++ b/res/values/custom_strings.xml
@@ -296,6 +296,10 @@
<string name="network_traffic_autohide_threshold">Inactivity threshold</string>
<string name="network_traffic_enable_title">Enable</string>
+ <!-- captive portal - disable connectivity check -->
+ <string name="captive_portal_mode_title">Disable captive portal</string>
+ <string name="captive_portal_mode_summary">Disable connectivity check by disabling captive portal</string>
+
<!-- statusbar brightness -->
<string name="status_bar_brightness_control_title">Brightness control</string>
<string name="status_bar_brightness_control_summary">Adjust brightness by sliding across status bar</string>
diff --git a/res/xml/more_settings.xml b/res/xml/more_settings.xml
index e24fc64..ed5a838 100644
--- a/res/xml/more_settings.xml
+++ b/res/xml/more_settings.xml
@@ -82,5 +82,11 @@
android:summary="@string/wake_when_plugged_or_unplugged_summary"
android:defaultValue="@*android:bool/config_unplugTurnsOnScreen" />
+ <org.omnirom.omnilib.preference.GlobalSettingSwitchPreference
+ android:key="captive_portal_mode"
+ android:title="@string/captive_portal_mode_title"
+ android:summary="@string/captive_portal_mode_summary"
+ android:defaultValue="true" />
+
</PreferenceCategory>
</PreferenceScreen>