首页 文章

连接多个没有USB的Android设备(使用wifi)是否可能?

提问于
浏览
-1

我按照以下步骤连接我的设备,并且已经通过此链接Adb over wireless without usb cable at allConnecting two android devices using wifi仍未连接,此处也是adb error: more than one device - android

  • 我通过USB线将设备连接到计算机 .

  • 转到平台工具路径 .

  • 运行adb tcpip 5555 .

  • 断开设备连接(拔下USB线) .

  • 我转到设置 - >关于手机 - >状态以查看手机的IP地址 .

  • 运行adb connect:5555 .

我得到了 error on terminal

enter image description here

1 回答

  • 0

    编辑:当连接多个设备时,您必须提供设备ID以及通过wifi打开adb .

    adb -s <device ID> tcpip 5555
    

    我从这里得到了asnwer:https://stackoverflow.com/a/38348791/4428159

    提供你的手机ip:

    adb: usage: adb connect <host>[:<port>]

    host是您要连接的移动设备的IP地址 . 您必须为要连接的所有设备执行此操作 .

相关问题