I have a single Android device that is running adb in TCP mode.
I connect one client use adb connect localhost:XYZ and it works fine.
Meanwhile, I connect a 2nd client on a separate computer adb connect localhost:XYZ
Adb devices shows it as offline, is this a known limitation?
adbclients do not connect toadbd(daemon running on Android device) directly. They connect throughadbserver which does the multiplexing.Yes current
adbdesign only supports oneadbserver connection peradbd.If you need to send
adbcommands from another PC - just send it through theadbserver running on the 1st PC (the one already connected to the device)This answer shows how it can be done.