其他分享
首页 > 其他分享> > adb 常用指令

adb 常用指令

作者:互联网

常用指令

  1. adb start-server 开启adb 服务
  2. adb kill-server 在关闭adb服务
  3. adb devices 查看系统是否识别设备(List of devices attached 是没有识别到设备)
  4. adb logcat -c 清除旧日志信息
  5. adb logcat -v time >.\logcat.log 开始抓取日志,>:代表输出到.\logcat.log(adb logcat -v time:是开始抓取日志命令)
  6. netstat -ano | findstr “5037” 查看谁占用了5037

标签:常用,logcat,log,5037,devices,指令,adb,日志
来源: https://blog.csdn.net/qq_39151367/article/details/113438213