adb wifi 链接调试Android设备

前提

Android 设备必须和电脑处于同一WIFI 网段下         

实战

adb tcpip 5555  //可以断开USB线,此时会发现usb充电无显示,连接数据线已无效。//连接wifi
adb connect android设备IP地址(如:adb connect 192.168.43.144 点击设备WIFI链接可以查看)//断开
adb disconnect
现在你就可以直接运行到apk 到设备了

辅助命令

adb install com.xx.xx  (com.xx.xx 应用包名) //安装应用

adb uninstall com.xx.xx                                   //卸载应用

你可能感兴趣的:(adb wifi 链接调试Android设备)