mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-02-01 11:42:18 +01:00
27 lines
1.2 KiB
XML
27 lines
1.2 KiB
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">
|
|
|
|
<SwitchPreferenceCompat
|
|
android:defaultValue="true"
|
|
android:key="ignore_bonded_devices"
|
|
android:layout="@layout/preference_checkbox"
|
|
android:summary="@string/ignore_bonded_devices_description"
|
|
android:title="@string/ignore_bonded_devices"
|
|
app:iconSpaceReserved="false" />
|
|
<SwitchPreferenceCompat
|
|
android:defaultValue="false"
|
|
android:key="enable_companiondevice_pairing"
|
|
android:layout="@layout/preference_checkbox"
|
|
android:summary="@string/companiondevice_pairing_details"
|
|
android:title="@string/companiondevice_pairing"
|
|
app:iconSpaceReserved="false" />
|
|
<SwitchPreferenceCompat
|
|
android:defaultValue="false"
|
|
android:key="discover_unsupported_devices"
|
|
android:layout="@layout/preference_checkbox"
|
|
android:summary="@string/discover_unsupported_devices_description"
|
|
android:title="@string/discover_unsupported_devices"
|
|
app:iconSpaceReserved="false" />
|
|
</PreferenceScreen>
|