Is there a way to enable wireless debugging on an Android 8.0 device?

5.1k Views Asked by At

I've been able to use wireless debugging on an Android 11 phone over Visual Studio on Mac, mainly because it explicitly has 'Wireless Debugging' option.

But I couldn't find similar option on an Android 8 phone. So is it possible to debug wirelessly on older Android phones?

1

There are 1 best solutions below

2
On

Yes, you can but its not completely wireless you will have to connect via USB once forward the port then have adb debugging over wifi More details here

  1. Connect the device via USB with "USB debugging enabled"
  2. run adb tcpip 5555
  3. Disconnect the USB cable from the target device
  4. find local ip of the device on the network
  5. run adb connect device_ip_address:5555