Warning, /network/kdeconnect-android/res/xml/mprisplugin_preferences.xml is written in an unsupported language. File is not indexed.

0001 <?xml version="1.0" encoding="utf-8"?>
0002 
0003 <!--
0004 SPDX-FileCopyrightText: 2023 Albert Vaca Cintora <albertvaka@gmail.com>
0005 
0006 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 -->
0008 
0009 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
0010     xmlns:tools="http://schemas.android.com/tools"
0011     android:layout_width="match_parent"
0012     android:layout_height="match_parent"
0013     tools:keep="@xml/mprisplugin_preferences">
0014 
0015     <ListPreference
0016         android:id="@+id/mpris_time_preference"
0017         android:defaultValue="@string/mpris_time_default"
0018         android:entries="@array/mpris_time_entries"
0019         android:entryValues="@array/mpris_time_entries_values"
0020         android:key="@string/mpris_time_key"
0021         android:summary="@string/mpris_time_settings_summary"
0022         android:title="@string/mpris_time_settings_title" />
0023 
0024     <SwitchPreference
0025         android:id="@+id/mpris_notification_preference"
0026         android:defaultValue="true"
0027         android:key="@string/mpris_notification_key"
0028         android:summary="@string/mpris_notification_settings_summary"
0029         android:title="@string/mpris_notification_settings_title" />
0030 
0031 </PreferenceScreen>