Multiple adb connections over WiFi

前端 未结 1 1434
无人共我
无人共我 2020-12-22 11:40

We are two people and want to connect to a android device from each respective notebook. When one person is connected, the other person gets a device is o

相关标签:
1条回答
  • 2020-12-22 12:35

    There are 3 parts to adb:

    1. daemon (runs on a device)
    2. server (runs on a host PC)
    3. client (usually runs on the same host PC as server)

    As it currently stands, the daemon allows only 1 connection from a server at the time. It is the server part which does the multiplexing and allows multiple clients run multiple commands simultaneously.

    In your case instead of every person trying to run their own server - let one person to run the server and the other one use that server remotely like I explained here.

    0 讨论(0)
提交回复
热议问题