I was wondering if I could connect 2 (or maybe more) bluetooth headsets
to my Redmi 4X to stream audio. I know Android P has support for 5 simultanious
bluetooth devices. But how about Android 7? (I use RR 5.8.5 on my Redmi 4X)
The answer: yes you can!
You need to edit the build.prop and add the following lines. Then reboot and connect 2 headphones to the device with Bluetooth. I like it!
Bonus: get your BT connected device battery level near the BT icon:
adb shell settings put system bluetooth_show_battery 1
Enjoy.
to my Redmi 4X to stream audio. I know Android P has support for 5 simultanious
bluetooth devices. But how about Android 7? (I use RR 5.8.5 on my Redmi 4X)
The answer: yes you can!
You need to edit the build.prop and add the following lines. Then reboot and connect 2 headphones to the device with Bluetooth. I like it!
Code:
# max connections is 2?
persist.bt.max.hs.connections=2
persist.bt.max.a2dp.connections=2
persist.bt.enable.multicast=1
# act as / enable client on phone (speaker/mic)
persist.service.bt.a2dp.sink=false
persist.service.bt.hfp.client=false
# other settings
persist.service.bdroid.lpmcfg=all
#persist.bt.a2dp_offload_cap=sbc-aac-aptx-aptXHD-ldac
persist.bt.enableAptXHD=true
#persist.bluetooth.disableabsvol=true
#wc_transport.force_special_byte=true
adb shell settings put system bluetooth_show_battery 1
Enjoy.
Last edited: