2021-12-23 18:56:36 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-06-11 02:52:56 +02:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
2023-10-06 22:06:35 +02:00
|
|
|
<SwitchPreferenceCompat
|
2023-07-25 13:24:42 +02:00
|
|
|
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" />
|
2023-10-06 22:06:35 +02:00
|
|
|
<SwitchPreferenceCompat
|
2023-11-25 23:53:55 +01:00
|
|
|
android:defaultValue="false"
|
2023-07-25 13:24:42 +02:00
|
|
|
android:key="enable_companiondevice_pairing"
|
|
|
|
android:layout="@layout/preference_checkbox"
|
|
|
|
android:summary="@string/companiondevice_pairing_details"
|
|
|
|
android:title="@string/companiondevice_pairing"
|
|
|
|
app:iconSpaceReserved="false" />
|
2023-10-06 22:06:35 +02:00
|
|
|
<SwitchPreferenceCompat
|
2023-07-25 13:24:42 +02:00
|
|
|
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" />
|
2021-12-23 18:56:36 +01:00
|
|
|
</PreferenceScreen>
|