Disable bluetooth sending by default

This is a pretty niche use-case and so it should be disabled by
default. Especially because it requires runtime permissions.
This commit is contained in:
Markus Fisch
2023-03-27 21:14:37 +02:00
parent 9fffb53f73
commit ef555c0153
4 changed files with 4 additions and 4 deletions
@@ -165,7 +165,7 @@ class Preferences {
apply(SEND_SCAN_TYPE, value)
field = value
}
var sendScanBluetooth = true
var sendScanBluetooth = false
set(value) {
apply(SEND_SCAN_BLUETOOTH, value)
field = value
+1 -1
View File
@@ -92,7 +92,7 @@
android:entryValues="@array/send_type_values"
android:defaultValue="0"/>
<android.support.v7.preference.SwitchPreferenceCompat
android:defaultValue="true"
android:defaultValue="false"
android:key="send_scan_bluetooth"
android:title="@string/send_scan_bluetooth"
android:summary="@string/send_scan_bluetooth_summary"/>
+1 -1
View File
@@ -92,7 +92,7 @@
android:entryValues="@array/send_type_values"
android:defaultValue="0"/>
<android.support.v7.preference.SwitchPreferenceCompat
android:defaultValue="true"
android:defaultValue="false"
android:key="send_scan_bluetooth"
android:title="@string/send_scan_bluetooth"
android:summary="@string/send_scan_bluetooth_summary"/>
+1 -1
View File
@@ -87,7 +87,7 @@
android:entryValues="@array/send_type_values"
android:defaultValue="0"/>
<android.support.v7.preference.SwitchPreferenceCompat
android:defaultValue="true"
android:defaultValue="false"
android:key="send_scan_bluetooth"
android:title="@string/send_scan_bluetooth"
android:summary="@string/send_scan_bluetooth_summary"/>