You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
XML
48 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<PreferenceCategory android:title="@string/app_name">
|
|
|
|
<Preference
|
|
android:key="app_version"
|
|
android:persistent="false"
|
|
android:summary="@string/check_for_updates" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:defaultValue="false"
|
|
android:key="updates_unstable"
|
|
android:summary="@string/allow_unstable_updates_summary"
|
|
android:title="@string/allow_unstable_updates" />
|
|
|
|
<SwitchPreferenceCompat
|
|
android:defaultValue="false"
|
|
android:key="logging"
|
|
android:summary="@string/enable_logging_summary"
|
|
android:title="@string/enable_logging"
|
|
app:allowDividerAbove="true" />
|
|
|
|
<Preference
|
|
android:dependency="logging"
|
|
android:key="logs_share"
|
|
android:title="@string/share_logs" />
|
|
|
|
<Preference
|
|
android:key="tracker_debug"
|
|
android:persistent="false"
|
|
android:summary="@string/tracker_debug_info_summary"
|
|
android:title="@string/tracker_debug_info" />
|
|
|
|
<Preference
|
|
android:key="about_app_translation"
|
|
android:summary="@string/about_app_translation_summary"
|
|
android:title="@string/about_app_translation"
|
|
app:allowDividerAbove="true" />
|
|
|
|
<org.koitharu.kotatsu.settings.utils.AboutLinksPreference />
|
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|