2018-09-15 15:21:17 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-09 18:24:02 +00:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-02-08 23:33:35 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-09-15 15:21:17 +00:00
|
|
|
android:title="@string/settings_category_updates_title">
|
|
|
|
|
2020-08-27 20:55:57 +00:00
|
|
|
<SwitchPreferenceCompat
|
2018-09-15 15:21:17 +00:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/update_app_key"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:summary="@string/updates_setting_description"
|
2018-09-15 15:21:17 +00:00
|
|
|
android:title="@string/updates_setting_title"
|
2021-08-21 12:21:55 +00:00
|
|
|
app:singleLineTitle="false"
|
2020-10-09 18:24:02 +00:00
|
|
|
app:iconSpaceReserved="false" />
|
2018-09-15 15:21:17 +00:00
|
|
|
|
2021-10-22 19:07:53 +00:00
|
|
|
<Preference
|
|
|
|
android:key="@string/manual_update_key"
|
|
|
|
android:summary="@string/manual_update_description"
|
|
|
|
android:title="@string/manual_update_title"
|
|
|
|
app:singleLineTitle="false"
|
|
|
|
app:iconSpaceReserved="false" />
|
|
|
|
|
2018-09-15 15:21:17 +00:00
|
|
|
</PreferenceScreen>
|