adb wifi调试

ADB调试

  • USB调试
  • WIFI调试(省去了连线的麻烦)

USB调试

该种模式不多说。

WIFI调试

  1. 开启手机TCPIP调试模式
    1. 连接usb线
    2. adb tcpip 5555
  2. 获取手机网络ip
    • adb shell ifconfig
    • adb shell netstat
    • about phone->state->ip
  3. adb链接终端
    adb connect ip

参考

Google官方文档参考

猜你喜欢

转载自blog.csdn.net/w1070216393/article/details/76560011