mirror of
https://invent.kde.org/network/kdeconnect-android.git
synced 2025-10-06 00:23:01 +02:00
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
SPDX-FileCopyrightText: 2023 Albert Vaca Cintora <albertvaka@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
-->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:keep="@xml/shareplugin_preferences">
|
|
|
|
<SwitchPreference
|
|
android:id="@+id/share_destination_customize"
|
|
android:defaultValue="false"
|
|
android:key="share_destination_custom"
|
|
android:summaryOff="@string/share_destination_customize_summary_disabled"
|
|
android:summaryOn="@string/share_destination_customize_summary_enabled"
|
|
android:title="@string/share_destination_customize" />
|
|
|
|
<Preference
|
|
android:id="@+id/share_destination_folder_preference"
|
|
android:key="share_destination_folder_preference"
|
|
android:title="@string/share_destination_folder_preference" />
|
|
|
|
<SwitchPreference
|
|
android:id="@+id/share_notification_preference"
|
|
android:defaultValue="true"
|
|
android:key="share_notification_preference"
|
|
android:summary="@string/share_notification_preference_summary"
|
|
android:title="@string/share_notification_preference" />
|
|
|
|
</PreferenceScreen>
|