触摸事件
adb shell input tap x y滑动事件
adb shell input swipe x1 y1 x2 y2长按事件
adb shell input swipe x1 y1 x2 y2 ms清理数据
adb shell pm clear 包名连接
adb wait-for-deviceadb remountadb connect 192.168.1.3log
// 清理日志adb logcat -c// 输出adb logcat -v time >log.txt导出Androidlog
adb pull data/log/android_log log闪退日志
adb pull data/system/dropbox dropbox启动页面
adb shell am start -n 包名/页面路径取消权限或者者受权
adb shell pm revoke|grant 包名 权限名称截图并且导出
adb shell screencap -p /sdcard/test.pngadb pull /sdcard/test.png d:/temp/test.png参考文章
[adb shell中的am pm命令 – 飘飘雪 – 博客园 ](https://www.cnblogs.com/wangcp-2014/p/6076035.html)