mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-14 22:04:56 +00:00
22 lines
811 B
XML
22 lines
811 B
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"
|
|
android:title="@string/settings_category_updates_title">
|
|
|
|
<SwitchPreferenceCompat
|
|
android:defaultValue="true"
|
|
android:key="@string/update_app_key"
|
|
android:summary="@string/updates_setting_description"
|
|
android:title="@string/updates_setting_title"
|
|
app:singleLineTitle="false"
|
|
app:iconSpaceReserved="false" />
|
|
|
|
<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>
|