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/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"
|
2011-04-15 10:53:13 +01:00
|
|
|
android:defaultValue="24" android:entries="@array/updateIntervalNames"
|
2011-01-04 23:52:04 +00:00
|
|
|
android:entryValues="@array/updateIntervalValues" />
|
2013-10-24 14:21:35 +02:00
|
|
|
<CheckBoxPreference android:title="@string/automatic_scan_wifi"
|
|
|
|
android:defaultValue="false" android:summary="@string/automatic_scan_wifi_desc"
|
|
|
|
android:key="updateOnWifiOnly" />
|
2010-11-14 22:28:08 +00:00
|
|
|
<CheckBoxPreference android:title="@string/notify"
|
2011-04-15 10:53:13 +01:00
|
|
|
android:defaultValue="true" android:summary="@string/notify_updates_available"
|
2010-11-07 23:06:46 +00:00
|
|
|
android:key="updateNotify" />
|
2013-03-17 00:35:12 +02:00
|
|
|
<EditTextPreference
|
|
|
|
android:defaultValue="14"
|
|
|
|
android:key="updateHistoryDays"
|
|
|
|
android:maxLength="2"
|
|
|
|
android:numeric="integer"
|
|
|
|
android:summary="@string/update_history_desc"
|
|
|
|
android:title="@string/update_history" />
|
2010-11-07 23:06:46 +00:00
|
|
|
</PreferenceCategory>
|
2013-05-11 23:32:18 +02:00
|
|
|
<PreferenceCategory android:title="@string/display">
|
|
|
|
<CheckBoxPreference android:title="@string/showPermissions"
|
|
|
|
android:defaultValue="false" android:summary="@string/showPermissions_long"
|
|
|
|
android:key="showPermissions"/>
|
|
|
|
<CheckBoxPreference android:title="@string/compactlayout"
|
|
|
|
android:defaultValue="false" android:summary="@string/compactlayout_long"
|
|
|
|
android:key="compactlayout"/>
|
|
|
|
</PreferenceCategory>
|
2011-03-04 23:46:24 +01:00
|
|
|
<PreferenceCategory android:title="@string/appcompatibility">
|
2013-11-02 18:27:02 +01:00
|
|
|
<CheckBoxPreference android:title="@string/show_incompat_versions"
|
|
|
|
android:defaultValue="false" android:summary="@string/show_incompat_versions_l"
|
|
|
|
android:key="incompatibleVersions" />
|
2013-10-23 17:53:36 +02:00
|
|
|
<CheckBoxPreference android:title="@string/rooted"
|
|
|
|
android:defaultValue="true" android:summary="@string/rooted_long"
|
|
|
|
android:key="rooted" />
|
2012-09-16 11:37:06 +01:00
|
|
|
<CheckBoxPreference android:title="@string/ignoreTouch"
|
|
|
|
android:defaultValue="false" android:summary="@string/ignoreTouch_long"
|
|
|
|
android:key="ignoreTouchscreen" />
|
2013-05-11 23:32:18 +02:00
|
|
|
</PreferenceCategory>
|
2013-08-30 14:34:52 +02:00
|
|
|
<PreferenceCategory android:title="@string/other">
|
2013-08-29 17:29:41 +02:00
|
|
|
<CheckBoxPreference android:title="@string/cache_downloaded"
|
|
|
|
android:defaultValue="false" android:summary="@string/keep_downloaded"
|
|
|
|
android:key="cacheDownloaded" />
|
2011-01-04 23:52:04 +00:00
|
|
|
<CheckBoxPreference android:title="@string/expert"
|
|
|
|
android:defaultValue="false" android:summary="@string/expert_mode"
|
|
|
|
android:key="expert" />
|
2013-08-29 17:29:41 +02:00
|
|
|
<ListPreference android:title="@string/db_sync_mode"
|
|
|
|
android:summary="@string/db_sync_mode_long" android:key="dbSyncMode"
|
|
|
|
android:dependency="expert"
|
|
|
|
android:defaultValue="full" android:entries="@array/dbSyncModeNames"
|
|
|
|
android:entryValues="@array/dbSyncModeValues" />
|
2011-01-04 23:52:04 +00:00
|
|
|
</PreferenceCategory>
|
2010-11-07 23:06:46 +00:00
|
|
|
</PreferenceScreen>
|