Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ADB devices list empty with wireless debugging

I have Android 11 on my phone, I have setup Wireless Debugging, and in the list of Paired Devices my computer shows up. However, when I run adb devices -l on my computer, the list of devices is empty.

Why am I seeing an empty list. Is there something extra that I need to do?

Here is the device:

Device

Here is the terminal:

Terminal

like image 414
Get Off My Lawn Avatar asked Jan 11 '21 22:01

Get Off My Lawn


People also ask

Why my device is not showing in ADB devices?

On Android 5.0, go to Settings -> Storage -> menu -> USB computer connection and make sure 'Media device (MTP)' is disabled. When it's disabled 'adb devices' lists the device, when enabled not.

How do I debug my wireless ADB?

If you are using Android 11 click on the build version many times to activate the developer option then go to Settings>Advanced>Developer options. Scroll to debugging and turn on the "Wireless debugging" checkbox. Then open the menu debugging by touching the "Wireless debugging".


1 Answers

You will need to connect to the device before it becomes visible in adb devices -l. You must run adb connect ipaddress:port, in your case adb connect 192.168.1.123:37457. Docs

like image 143
Mohammad Kurjieh Avatar answered Sep 25 '22 08:09

Mohammad Kurjieh