1. 常用命令
    • adb devices  #查看连接设备
    • adb install test.apk #安装包
    • adb uninstall test.apk # 卸载包
    • adb connect 192.0.0.1:7555 #通过端口连接MUMU模拟器
    • adb disconnect 192.0.0.1:7555#断开连接
    • adb shell #进入设备终端
    • adb shell df #查看设备磁盘空间占用情况
    • adb shell free #查看磁盘内存和运行内存
    • adb shell top #查看设备当前进程
    • adb shell netstat #查看所有打开的端口
    • adb shell kill -9 #杀进程
    • adb shell pm list packages #列出手机装的所有app的包名
    • adb shell dupsys meminfo #手机内存使用情况 Memory Usage
    • adb -s 设备序号 shell #进入指定设备终端调试
    • adb logcat #查看日志
    • adb logcat -c #清除log 缓存
    • adb logcat -v time  #打印带有时间的日志
    • adb logcat  *:E #打印级别为Error的信息
    • adb logcat -v time  *:E #打印带有时间且级别为Error的日志
    • adb logcat -v time > D:\log.txt #打印日志并保存到指定位置
    • adb push 电脑路径 手机路径 #上传 电脑的信息上传到手机里
    • adb pull 手机路径 电脑路径
    •  netstat -ano|findstr 10086 查看端口是否被占用
    •  adb help # 查看adb帮助