查看包名:
adb shell "dumpsys window windows|grep mFocusedApp"
打开app:
adb shell am start 包名/activity
拉取电脑中的文件:
adb push C:/img/tag.apk /sdcard
adb安装,卸载
安装:adb install -r C:\img\tage.apk
卸载:adb uninstall 包名
adb logcat | grep 应用包名 换成 adb logcat | findstr 应用包名
查看日志:
adb shell "logcat|grep 内容"
adb logcat | findstr 内容
列出所有的安装包
adb shell pm list package
手机截屏:
adb shell screencap -p /sdcard/01.png
手机截屏发送给电脑:
adb pull /sdcard/01.png c:/img
录屏:
adb shell screenrecord /sdcard/demo.mp4
adb pull /sdcard/demo.mp4 c:/img
获取当前cpu:
adb shell dumpsys cpuinfo 包名
获取内存状态:
adb shell dumpsys meminfo 包名
滑动:
adb shell input swipe 300 800 300 200
点击:
adb shell input tap 100 200
home键:
adb shell input keyevent 3