当前位置:网站首页>adb常用命令
adb常用命令
2022-08-02 14:15:00 【keer丶】
1.查看连接了多少设备
adb devices
2.adb命令连接MUMU虚拟手机
adb connect 127.0.0.1:7555 7555为mumu的端口号
3.取消链接
adb disconnect 127.0.0.1:7555
4.启动adb服务
adb start-server
5.关闭服务
adb kill-server
6.安装软件包
adb install -r apk路径 -r保留数据-t强制覆盖
7、卸载软件包
adb uninstall 包名 -k保留数据以及缓存文件
8.查看系统包名
adb shell pm list package 获取设备上所有的包名
-s 手机系统自带应用
-3手机系统第三方应用
9.显示当前打开的软件包名
adb shell dumpsys window | findstr mCurrentFocus
10.清楚应用数据与缓存
adb shell pm clear 包名
11.启动、停止应用
启动:adb shell am start 包名/activity名
-W 大写W 获取启动时间
-R 重复启动 后边跟次数
-S每次启动前先停止
停止:adb shell am force-stop 包名
12.获取内存信息
adb shell dumpsys meminfo 包名
13.查看cou占用情况
adb shell top -s cpu 或者adb shell top -s 9
-s按指定行排序 -m显示最大数量
14.monkey
adb shell monkey -p 包名 -v(日志) 次数 > 文件路径、
-p制定包名
-v log详细程度 最高-v-v-v
--throttle 单步延迟(每部操作间隔)ms
-pct-touch点击事件 -v
15.获取安卓版本
adb shell getprop ro.build.version.release
16.获取启动页面的activity
win:adb logcat ActivityManager:I | findstr "cmp"
17.清楚应用数据及缓存
adb shell pm clear <包名>
18.查看日志常用参数
adb logcat 打印默认日志数据
adb logcat -v time 打印时间
adb logcat -v color 使用不同的颜色来显示每个优先级
adb logcat -f <filename> 将日志输出到文件
adb logcat >log.log 保存日志到pc上
adb logcat -c清理已存在的日志
19.根据条件过滤日志
adb logcat -v time "*:W" 打印warning及以上级别的日志
adb logcat ActivityManager:D 过滤tag为 ActivityManager,level为debug及以上级别的日志
20.cpu的使用情况
adb shell dumpsys cpuinfo
21.内存的使用情况
adb shell dumpsys meminfo 查看当前系统的内存
adb shell dumpsys meminfo <应用名> 查看某个应用的内存
22.top命令
adb shell top
adb shell top | grep <包名>
23.电池电量
adb shell dumpsys battery
边栏推荐
猜你喜欢
随机推荐
Evaluation multipath weswood congestion control on ns3
【软件测试】禅道的简要介绍
Unity-存档与读档
5款最好用的免费3D建模软件(附下载链接)
Unity-PlayMaker
C#实现简单的计算器
Doubly linked list (normal iterators and const iterators)
数学工具-desmos 图形曲线
Feign Client 超时时间配置不生效
【软件测试】项目中关于测试人员的简单介绍
Class template/assignment operations and add operations
mininet hosts talk to real internet
CDH (computational Diffie-Hellman) problem and its differences with discrete logarithm and DDH problems
Optisystem应用:光电检测器灵敏度建模
【solidity智能合约基础】节约gas的利器--view和pure
px和em和rem的区别
极简式 Unity 获取 bilibili 直播弹幕、SC、上舰、礼物等 插件
golang内存相关文章-收集
【线程网络】了解线程属性(fork/interview question)
分布式一致性协议-Raft