How to disable Bluetooth "always on" mode?

This bug for Nougat only.

I shutdown Bluetooth in the settings, but Bluetooth is enabled again after rebooting.

How to fix it?

It is designed to auto connect bluetooth remote after power on and not a bug.
You can try to modify file system.prop

VIM:

diff --git a/kvim/system.prop b/kvim/system.prop
index 64b5d8a..79e3a4b 100644
--- a/kvim/system.prop
+++ b/kvim/system.prop
@@ -8,7 +8,7 @@ ro.camera.preview.LimitedRate=1280x720x30,640x480x30,320x240x28
 ro.camera.preview.UseMJPEG=1
 
 #for bt auto connect
-ro.autoconnectbt.isneed=true
+ro.autoconnectbt.isneed=flase
 ro.autoconnectbt.macprefix=00:CD:FF
 ro.autoconnectbt.btclass=50c

VIM2:

diff --git a/kvim2/system.prop b/kvim2/system.prop
index ef318d7..cd74f51 100644
--- a/kvim2/system.prop
+++ b/kvim2/system.prop
@@ -8,7 +8,7 @@ ro.camera.preview.LimitedRate=1280x720x30,640x480x30,320x240x28
 ro.camera.preview.UseMJPEG=1
 
 #for bt auto connect
-ro.autoconnectbt.isneed=true
+ro.autoconnectbt.isneed=flase
 ro.autoconnectbt.macprefix=00:CD:FF
 ro.autoconnectbt.btclass=50c

1 Like

Thank you.
I don’t know that :slight_smile: