How to connect multiple android devices with ADB over wifi

后端 未结 3 1371
野性不改
野性不改 2021-02-05 21:58

ADB is installed in the computer, and usb debugging is enabled on devices. Also I have connected one device over wifi successfully. How to connect more devices without having to

3条回答
  •  离开以前
    2021-02-05 22:55

    Yes there is a way to do so without having to type the serial number.

    Say you have 2 devices A (IP: 192.168.1.32) and B (IP: 192.168.1.33) that you want to connect to ADB over wifi:

    1. Connect device A with a USB cable to the computer (but not B)
    2. adb -d tcpip 5555
    3. adb connect 192.168.1.32
    4. Disconnect device A, and connect device B with a USB cable to the computer
    5. adb -d tcpip 5555
    6. adb connect 192.168.1.33

提交回复
热议问题