File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# ADB常用命令
22
3- 命令 | 说明
4- --- | ---
5- adb start-server | 启动服务
6- adb kill-server | 关闭服务
7- adb devices | 显示当前连接的所有设备(如果服务没有开启会自动开启)
8- adb install xxx.apk | 将应用安装进设备中
9- adb uninstall <包名> | 卸载应用
10- adb -s <设备名> <命令> | 如果有多个设备,指定某一个设备进行操作
3+ 命令 | 说明
4+ --------------------------------|-------------------------------------------------- ---
5+ adb start-server | 启动服务
6+ adb kill-server | 关闭服务
7+ adb devices | 显示当前连接的所有设备(如果服务没有开启会自动开启)
8+ adb install xxx.apk | 将应用安装进设备中
9+ adb uninstall <包名> | 卸载应用
10+ adb -s <设备名> <命令> | 如果有多个设备,指定某一个设备进行操作
1111adb pull <手机文件> <电脑文件> | 将手机内文件导入到电脑上(文件名均为全称)
1212adb push <电脑文件> <手机文件> | 将电脑中文件推送到手机上(文件名均为全称)
13- adb shell | 进入手机命令行终端
14- ┗ ls | 查看目录列表
15- ┗ ls -l | 显示详细信息(权限 用户名 组名 时间 包名)
16- ┗ ps | 当前正在运行的进程
17- ┗ ping | 手机的网络连通性
13+ adb shell | 进入手机命令行终端
14+ ┗ ls | 查看目录列表
15+ ┗ ls -l | 显示详细信息(权限 用户名 组名 时间 包名)
16+ ┗ ps | 当前正在运行的进程
17+ ┗ ping | 手机的网络连通性
1818
You can’t perform that action at this time.
0 commit comments