1.查看设备是否连接上
adb devices
2.安装软件
adb install APK路径
3.卸载软件
adb uninstall 包名
4.抓日志
adb logcat -v time > d:1.txt
5.查看内存情况
adb shell dumpsys meminfo <包名>
6.查看CPU使用情况
adb shell dumpsys cpuinfo <包名>
7.查看包名
aapt dump badging d:mall.apk
8.截图并保存到电脑上
adb shell /system/bin/screencap -p /sdcard/screenshot.png
adb pull /sdcard/screenshot.png e:download