2021-10-09

常用的ADB指令合集

##通过ADB指令安装卸载应用
确认设备和电脑在同一局域网下

1.通过ADB 指令链接设备
adb connect [device_IP:port]

2.断开连接
adb disconnect [serialNumber]

3.覆盖安装应用
adb install -r "应用地址"

4.查看设备应用列表
adb shell pm list packages

5.卸载应用
adb uninstall 应用包名

4.关闭应用
adb shell am force-stop 应用包名

5.启动应用
adb shell am start -n 应用包名/应用主类名

6.查询当前正在运行的应用主类名
adb shell dumpsys window w | findstr \/ | findstr name=应用包名

7.设置设备时间
adb shell date "083113362021.00"

8.拉取设备指定路径的文件或文件夹,存储到PC的指定路径
adb pull [device-file-path] [PC-file-path]

9.将PC指定路径的文件或文件夹,存储到设备的指定路径
adb push [PC-file-path] [device-file-path]

10.查看设备日志,options和filter-key都是筛选条件
adb logcat [options] [filter-key]

11.重启设备
adb reboot

12.查看设备屏幕分辨率
adb shell wm size

13.查看手机屏幕像素密度
adb shell wm density

14.手机截图到指定路径
adb exec-out screencap -p > [PC_file_path]

15.查看应用安装的路径,一般应用安装在/data/app/下,系统应用安装在/system/下
adb shell pm path [packageName]

16.查看指定应用的版本号:
adb shell pm dump com.cdsubway.station.guidescreen | findstr "version"

17.查看指定应用的备份安装包地址:
adb shell pm path com.cdsubway.station.guidescreen

18.拉取手机指定路径的文件或文件夹,存储到PC的指定路径
adb pull [device-file-path] [PC-file-path]
上一篇:fastboot 不是内部或外部命令


下一篇:加快adb截图