ADB devices list empty with wireless debugging

Viewed 1352

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

2 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

It says unknown command adb pair Saw the help there is no pair command listed in the menu

Instead go to platform-tools folder in my case ~/Android/Sdk/platform-tools from here you can execute ./adb and then in the help you can see there the pair option ./adb pair <ipaddress>:<port> will prompt for pairing code

Then you are sucessfully connected

enter image description here

Related