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" />
|
|
|
|
</PreferenceCategory>
|
2010-11-14 22:28:08 +00:00
|
|
|
<PreferenceCategory android:title="@string/updates">
|
|
|
|
<ListPreference android:title="@string/automatic_repo_scan"
|
|
|
|
android:summary="@string/update_apps_list"
|
2010-11-07 23:06:46 +00:00
|
|
|
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-11-14 22:28:08 +00:00
|
|
|
<PreferenceCategory android:title="@string/maintenance">
|
2010-11-13 10:35:39 +00:00
|
|
|
<Preference
|
2010-11-14 22:28:08 +00:00
|
|
|
android:title="@string/reset"
|
|
|
|
android:summary="@string/clear_all_cached_data"
|
2010-11-13 10:35:39 +00:00
|
|
|
android:key="reset" />
|
|
|
|
</PreferenceCategory>
|
2010-11-07 23:06:46 +00:00
|
|
|
</PreferenceScreen>
|