adb基本指令
Posted 长征中的蜗牛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了adb基本指令相关的知识,希望对你有一定的参考价值。
1、adb帮助
adb --help
2、启动adb server
adb start-server
3、关闭adb server
adb kill-server
4、获取设备号
adb devices
5、获取系统版本号
adb -s 设备号 shell getprop ro.build.version.release
6、发送文件到手机上
adb push 电脑端文件路径/需要发送的文件 手机端存储路径
7、发送手机文件到电脑上
adb pull 手机端路径/需要发送的文件 电脑端存储路径
8、获取app启动包名和启动名(需要在手机上先打开软件)
adb shell dumpsys window windows | findstr mFocusedApp
9、获取app启动时间
adb shell am start -W 包名/启动名
10、进入shell模式
adb shell
以上是关于adb基本指令的主要内容,如果未能解决你的问题,请参考以下文章
Android 进阶——性能优化之借助adb shell ps /top 指令详细分析进程