ADB Commands
#Windows
C:\Users\<username>\AppData\Local\Android\sdk\platform-tools\adb.exe
#MacOS
/Users/<username>/Library/Android/sdk/platform-tools/adb连接
adb devicesadb tcpip 5555adb connect <IP>:<PORT>多个设备
端口隧道
包管理器
安装/卸载
adb install [选项] <路径>
adb卸载 [选项] <包名>
包
adb shell pm list packages [options] <FILTER-STR>
adb shell pm path <PACKAGE>
adb shell pm clear <PACKAGE>
文件管理器
adb pull <remote> [local]
adb push <local> <remote>
屏幕截图/录屏
adb shell screencap <文件名>
adb shell screenrecord [options] <filename>
Shell
adb shell
adb shell <CMD>
pm
进程
系统
日志
Logcat
adb logcat [选项] [过滤规则]
adb logcat -b <缓冲区>
dumpsys
adb shell dumpsys [options]
最后更新于