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">
|
2017-03-29 16:22:05 +11:00
|
|
|
<PreferenceScreen android:title="@string/about_title">
|
|
|
|
<intent
|
|
|
|
android:action="android.intent.action.MAIN"
|
2017-11-22 13:21:06 -02:00
|
|
|
android:targetPackage="@string/applicationId"
|
2017-03-29 16:22:05 +11:00
|
|
|
android:targetClass="org.fdroid.fdroid.AboutActivity" />
|
|
|
|
</PreferenceScreen>
|
2017-02-14 09:07:00 +11:00
|
|
|
<PreferenceCategory android:title="@string/preference_category__my_apps">
|
|
|
|
<PreferenceScreen android:title="@string/preference_manage_installed_apps">
|
|
|
|
<intent
|
|
|
|
android:action="android.intent.action.MAIN"
|
2017-11-22 13:21:06 -02:00
|
|
|
android:targetPackage="@string/applicationId"
|
2017-02-14 09:07:00 +11:00
|
|
|
android:targetClass="org.fdroid.fdroid.views.installed.InstalledAppsActivity" />
|
|
|
|
</PreferenceScreen>
|
2016-11-17 12:11:34 +11:00
|
|
|
<PreferenceScreen
|
|
|
|
android:title="@string/menu_manage"
|
|
|
|
android:summary="@string/repositories_summary">
|
|
|
|
<intent
|
|
|
|
android:action="android.intent.action.MAIN"
|
2017-11-22 13:21:06 -02:00
|
|
|
android:targetPackage="@string/applicationId"
|
2016-11-17 12:11:34 +11:00
|
|
|
android:targetClass="org.fdroid.fdroid.views.ManageReposActivity" />
|
|
|
|
</PreferenceScreen>
|
2017-02-14 09:07:00 +11:00
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/updates">
|
2017-02-20 08:42:25 +11:00
|
|
|
<com.geecko.QuickLyric.view.AppCompatListPreference android:title="@string/update_interval"
|
2015-10-19 09:21:48 +02:00
|
|
|
android:key="updateInterval"
|
|
|
|
android:defaultValue="24"
|
|
|
|
android:entries="@array/updateIntervalNames"
|
|
|
|
android:entryValues="@array/updateIntervalValues" />
|
|
|
|
<CheckBoxPreference android:title="@string/automatic_scan_wifi"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="updateOnWifiOnly" />
|
2016-04-06 13:45:29 +02:00
|
|
|
<CheckBoxPreference android:title="@string/update_auto_download"
|
|
|
|
android:summary="@string/update_auto_download_summary"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="updateAutoDownload" />
|
2015-10-19 09:21:48 +02:00
|
|
|
<CheckBoxPreference android:title="@string/notify"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="updateNotify" />
|
|
|
|
</PreferenceCategory>
|
2017-04-18 23:36:37 +02:00
|
|
|
<PreferenceCategory android:title="@string/display"
|
|
|
|
android:key="pref_category_display">
|
2017-02-20 08:42:25 +11:00
|
|
|
<com.geecko.QuickLyric.view.AppCompatListPreference android:title="@string/pref_language"
|
2017-04-01 20:54:17 +02:00
|
|
|
android:key="language"/>
|
2017-02-20 08:42:25 +11:00
|
|
|
<com.geecko.QuickLyric.view.AppCompatListPreference android:title="@string/theme"
|
2015-10-19 09:21:48 +02:00
|
|
|
android:key="theme"
|
|
|
|
android:defaultValue="light"
|
|
|
|
android:entries="@array/themeNames"
|
|
|
|
android:entryValues="@array/themeValues" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/appcompatibility">
|
|
|
|
<CheckBoxPreference android:title="@string/show_incompat_versions"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="incompatibleVersions" />
|
|
|
|
<CheckBoxPreference android:title="@string/rooted"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="rooted" />
|
2016-08-24 19:31:15 -04:00
|
|
|
<CheckBoxPreference android:title="@string/hide_anti_feature_apps"
|
2016-08-23 22:24:03 -04:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="hideAntiFeatureApps" />
|
2015-10-19 09:21:48 +02:00
|
|
|
<CheckBoxPreference android:title="@string/ignoreTouch"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="ignoreTouchscreen" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/local_repo">
|
|
|
|
<EditTextPreference
|
|
|
|
android:key="localRepoName"
|
|
|
|
android:title="@string/local_repo_name" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/proxy" >
|
2016-02-26 19:48:07 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="useTor"
|
|
|
|
android:summary="@string/useTorSummary"
|
|
|
|
android:title="@string/useTor" />
|
2014-05-28 19:55:47 -04:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="enableProxy"
|
|
|
|
android:title="@string/enable_proxy_title"
|
|
|
|
android:summary="@string/enable_proxy_summary" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:key="proxyHost"
|
|
|
|
android:title="@string/proxy_host"
|
2015-10-19 09:21:48 +02:00
|
|
|
android:summary="@string/proxy_host_summary"
|
|
|
|
android:dependency="enableProxy" />
|
2014-05-28 19:55:47 -04:00
|
|
|
<EditTextPreference
|
|
|
|
android:key="proxyPort"
|
|
|
|
android:title="@string/proxy_port"
|
2014-08-28 17:46:23 +01:00
|
|
|
android:summary="@string/proxy_port_summary"
|
2015-10-19 09:21:48 +02:00
|
|
|
android:dependency="enableProxy" />
|
|
|
|
</PreferenceCategory>
|
2017-11-23 11:10:59 -02:00
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:key="pref_category_privacy"
|
|
|
|
android:title="@string/privacy">
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="@bool/defaultPreventScreenshots"
|
|
|
|
android:key="preventScreenshots"
|
|
|
|
android:summary="@string/preventScreenshots_summary"
|
|
|
|
android:title="@string/preventScreenshots_title"/>
|
|
|
|
|
2017-11-23 10:19:07 -02:00
|
|
|
<PreferenceScreen
|
|
|
|
android:summary="@string/panic_settings_summary"
|
|
|
|
android:title="@string/panic_settings">
|
|
|
|
<intent
|
|
|
|
android:action="android.intent.action.MAIN"
|
|
|
|
android:targetClass="org.fdroid.fdroid.views.panic.PanicPreferencesActivity"
|
|
|
|
android:targetPackage="@string/applicationId"/>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
2017-11-23 11:10:59 -02:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
2016-08-18 01:04:55 +02:00
|
|
|
<PreferenceCategory android:title="@string/other"
|
|
|
|
android:key="pref_category_other">
|
2017-02-20 08:42:25 +11:00
|
|
|
<com.geecko.QuickLyric.view.AppCompatListPreference android:title="@string/cache_downloaded"
|
2016-04-14 19:28:52 -04:00
|
|
|
android:key="keepCacheFor"
|
2016-08-15 22:47:45 +02:00
|
|
|
android:defaultValue="86400000"
|
2016-04-14 19:28:52 -04:00
|
|
|
android:entries="@array/keepCacheNames"
|
|
|
|
android:entryValues="@array/keepCacheValues" />
|
2015-10-19 09:21:48 +02:00
|
|
|
<CheckBoxPreference android:title="@string/expert"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="expert" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="unstableUpdates"
|
|
|
|
android:title="@string/unstable_updates"
|
|
|
|
android:summary="@string/unstable_updates_summary"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:dependency="expert" />
|
2016-09-09 15:34:47 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="keepInstallHistory"
|
|
|
|
android:title="@string/keep_install_history"
|
|
|
|
android:summary="@string/keep_install_history_summary"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:dependency="expert" />
|
2017-06-07 17:33:37 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="forceOldIndex"
|
|
|
|
android:title="@string/force_old_index"
|
|
|
|
android:summary="@string/force_old_index_summary"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:dependency="expert" />
|
2015-10-19 09:21:48 +02:00
|
|
|
<CheckBoxPreference android:title="@string/system_installer"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="privilegedInstaller"
|
2016-08-22 22:06:30 +02:00
|
|
|
android:persistent="false"
|
2015-10-19 09:21:48 +02:00
|
|
|
android:dependency="expert" />
|
|
|
|
<Preference android:title="@string/uninstall_system"
|
|
|
|
android:summary="@string/uninstall_system_summary"
|
|
|
|
android:key="uninstallPrivilegedApp"
|
|
|
|
android:dependency="expert" />
|
|
|
|
</PreferenceCategory>
|
2010-11-07 23:06:46 +00:00
|
|
|
</PreferenceScreen>
|