Debug android apps via bluetooth

Federico Ponzi
1 min readJun 13, 2018

--

  1. Connect the device via USB.
  2. Open a terminal, and run adb tcpip 4455 .
  3. Now you can unplug the cable, and pair/connect to the host computer via bluetooth
  4. On Android, start tethering via Bluetooth
  5. On the pc, on the terminal, run adb connect 192.168.44.1:4455 . It should say connected to 192.168.44.1:4455
  6. Start Android Studio and now the device will be available for launch.

--

--