adb manual
###1. 使用tcp/ip网络连接adb adb能够通过tcp连接,将pc与android设备连接到同一个局域网中, 然后执行 /* step 1. 重启手机的 adbd, 并且 adbd 将会监听5555号tcp端口 */ $ adb tcpip 5555 /* step 2. 可建立 adb 连接, 假设手机的ip为 192.168.1.244 */ $ adb connect 192.168.1.244:5555 /* step 3. 检查 adb devices, 因为同时有usb和网络的连接, 所以一台手机会被识别为2个adb设备 */ $...