ADB 常用命令总结(持续更新)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ADB 常用命令总结(持续更新)相关的知识,希望对你有一定的参考价值。
1.adb devices
2.抓取adb log:adb logcat -v time >test.log (Log直接保存在个人电脑用户名下)
3.adb install 包地址(可以直接拖到窗口) 安装应用
4.adb uninstall packagename 卸载应用
5.查看手机内存:
adb shell cat /proc/meminfo
6.查看某个应用的pid:
eg:adb shell ps | grep qq
7.查看某个应用的CPU使用情况:
adb shell
top -m 10 -s cpu(-m显示的最大数量,-s 按指定行排序)
8.查看某个应用的内存使用情况:
adb shell
dumpsys meminfo pid
9.查看某个应用的包名
adb shell
logcat |grep START
以上是关于ADB 常用命令总结(持续更新)的主要内容,如果未能解决你的问题,请参考以下文章