Last Updated: January 28, 2019
·
12.92K
· keyboardsurfer

adb over bluetooth

If you want to use adb over bluetooth you can use the following commands on your rooted Android device as root:

setprop service.adb.tcp.port 5555

For turning it off execute:

setprop service.adb.tcp.port -1

Then restart the adbd on your development machine

stop adbd && start adbd

And connect to your bluetooth device:

adb connect 192.168.2.2:5555

Of course you'll need to pair your Android device with your development machine prior to that.