2022-06-14 18:05:41 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<PreferenceCategory
|
2022-06-19 16:03:37 +02:00
|
|
|
android:title="@string/connection_over_ble" />
|
2022-06-14 18:05:41 +02:00
|
|
|
|
2023-06-21 19:32:02 +02:00
|
|
|
<SwitchPreference
|
2022-06-19 16:03:37 +02:00
|
|
|
android:icon="@drawable/ic_bluetooth"
|
2022-06-14 18:05:41 +02:00
|
|
|
android:key="prefs_key_device_auto_reconnect"
|
2022-06-19 16:03:37 +02:00
|
|
|
android:title="@string/auto_reconnect_ble_title"
|
|
|
|
android:summary="@string/auto_reconnect_ble_summary"
|
2022-09-11 01:49:16 +02:00
|
|
|
android:defaultValue="true" />
|
2023-06-21 19:32:02 +02:00
|
|
|
</PreferenceScreen>
|