2010-11-07 23:06:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
2010-11-14 22:28:08 +00:00
|
|
|
<PreferenceCategory android:title="@string/storage">
|
|
|
|
<CheckBoxPreference android:title="@string/cache_downloaded"
|
|
|
|
android:defaultValue="false" android:summary="@string/keep_downloaded"
|
2010-11-07 23:06:46 +00:00
|
|
|
android:key="cacheDownloaded" />
|
2011-02-13 20:37:35 +01:00
|
|
|
<ListPreference android:title="@string/db_sync_mode"
|
|
|
|
android:summary="@string/db_sync_mode_long" android:key="dbSyncMode"
|
2011-02-14 02:23:23 +01:00
|
|
|
android:dependency="expert"
|
2011-02-13 20:37:35 +01:00
|
|
|
android:defaultValue="full" android:entries="@array/dbSyncModeNames"
|
|
|
|
android:entryValues="@array/dbSyncModeValues" />
|
2010-11-07 23:06:46 +00:00
|
|
|
</PreferenceCategory>
|
2010-11-14 22:28:08 +00:00
|
|
|
<PreferenceCategory android:title="@string/updates">
|
|
|
|
<ListPreference android:title="@string/automatic_repo_scan"
|
2011-01-04 23:52:04 +00:00
|
|
|
android:summary="@string/update_apps_list" android:key="updateInterval"
|
|
|
|
android:defaultValue="0" android:entries="@array/updateIntervalNames"
|
|
|
|
android:entryValues="@array/updateIntervalValues" />
|
2010-11-14 22:28:08 +00:00
|
|
|
<CheckBoxPreference android:title="@string/notify"
|
|
|
|
android:defaultValue="false" android:summary="@string/notify_updates_available"
|
2010-11-07 23:06:46 +00:00
|
|
|
android:key="updateNotify" />
|
|
|
|
</PreferenceCategory>
|
2010-12-16 21:40:17 +00:00
|
|
|
<PreferenceCategory android:title="@string/antifeatures">
|
|
|
|
<CheckBoxPreference android:title="@string/antiads"
|
|
|
|
android:defaultValue="false" android:summary="@string/antiadslong"
|
2011-01-17 17:14:10 +00:00
|
|
|
android:key="antiAds" />
|
2010-12-16 21:40:17 +00:00
|
|
|
<CheckBoxPreference android:title="@string/antitrack"
|
|
|
|
android:defaultValue="false" android:summary="@string/antitracklong"
|
2011-01-17 17:14:10 +00:00
|
|
|
android:key="antiTracking" />
|
2010-12-16 21:40:17 +00:00
|
|
|
<CheckBoxPreference android:title="@string/antinonfreead"
|
|
|
|
android:defaultValue="false" android:summary="@string/antinonfreeadlong"
|
2011-01-17 17:14:10 +00:00
|
|
|
android:key="antiNonFreeAdd" />
|
2010-12-16 21:40:17 +00:00
|
|
|
<CheckBoxPreference android:title="@string/antinonfreenet"
|
|
|
|
android:defaultValue="false" android:summary="@string/antinonfreenetlong"
|
2011-01-17 17:14:10 +00:00
|
|
|
android:key="antiNonFreeNet" />
|
2010-12-16 21:40:17 +00:00
|
|
|
</PreferenceCategory>
|
2011-03-04 23:46:24 +01:00
|
|
|
<PreferenceCategory android:title="@string/appcompatibility">
|
|
|
|
<CheckBoxPreference android:title="@string/showincompat"
|
|
|
|
android:defaultValue="false" android:summary="@string/showincompat_long"
|
|
|
|
android:key="showIncompatible" />
|
|
|
|
</PreferenceCategory>
|
2010-11-14 22:28:08 +00:00
|
|
|
<PreferenceCategory android:title="@string/maintenance">
|
2011-01-04 23:52:04 +00:00
|
|
|
<Preference android:title="@string/reset" android:summary="@string/clear_all_cached_data"
|
|
|
|
android:key="reset" />
|
|
|
|
<CheckBoxPreference android:title="@string/expert"
|
|
|
|
android:defaultValue="false" android:summary="@string/expert_mode"
|
|
|
|
android:key="expert" />
|
|
|
|
</PreferenceCategory>
|
2010-11-07 23:06:46 +00:00
|
|
|
</PreferenceScreen>
|