NewPipe-app-android/app/src/main/res/xml/update_settings.xml

22 lines
811 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-10-09 20:24:02 +02:00
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:title="@string/settings_category_updates_title">
2020-08-27 22:55:57 +02:00
<SwitchPreferenceCompat
android:defaultValue="true"
android:key="@string/update_app_key"
2020-10-09 20:24:02 +02:00
android:summary="@string/updates_setting_description"
android:title="@string/updates_setting_title"
app:singleLineTitle="false"
2020-10-09 20:24:02 +02:00
app:iconSpaceReserved="false" />
2021-10-22 21:07:53 +02: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" />
</PreferenceScreen>