Bluetooth
We can enable Bluetooth HCI logging from developers options and then do some BLE stuff and there will be a file called
btsnoop_hci.log./etc/bluetooth/bt_stack.confis the file that hold all the information about the bluetooth configuration.If rooted phone:
adb shell sugives you the root accessBut even then we cannot edit that file manually.
Chances are that we might not be able to directly pull the
btsnoop_hci.logviaadb pull <path to the file>.Best solution is to get sudo shell and copy that file to
/sdcardThen run
abd pull /sdcard/btsnoop_hci.log
Last updated