1
0
mirror of https://github.com/etesync/android synced 2024-12-01 20:38:35 +00:00
etesync-android/res/xml/general_settings.xml
rfc2822 3e4efe8b82 Debug settings
* preference screen for debug settings
* allow to disable HTTP compression
* verbose network logging only when activated
* single HttpClient for all threads (before: single HttpClient per adapter)
* bump version to 0.5.13-alpha
2014-05-08 21:22:52 +02:00

11 lines
591 B
XML

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<CheckBoxPreference
android:key="disable_compression"
android:summaryOff="@string/http_compression_enabled"
android:summaryOn="@string/http_compression_disabled"
android:title="@string/disable_http_compression" />
<CheckBoxPreference android:title="@string/network_logging" android:summaryOn="@string/network_logging_enabled" android:key="network_logging" android:summaryOff="@string/network_logging_disabled"/>
</PreferenceScreen>