白乐天

道阻且长,行则将至。

adb: Android调试桥

Android Debug Bridge调试桥 (adb) 是一种功能多样的命令行工具,可以通过命令行与设备进行通信。

查询设备

  • adb devices
    adb 会创建一个字符串,用于通过端口号唯一标识设备。
  • adb devices -l
    加入 -l 选项,devices 命令会告知设备是什么。当连接了多个设备时,此信息会很有用,方便区分这些设备。

设备状态

  • offline:设备未连接到 adb 或没有响应。
  • device:设备已连接到 adb 服务器。
    请注意,此状态并不表示 Android 系统已完全启动并可正常运行,因为在设备连接到 adb 时系统仍在启动。系统完成启动后,设备通常处于此运行状态。
  • no device:未连接任何设备。
  • unauthorized:电脑与安卓设备之间的调试授权未完成。

指定目标设备(-s选项)

  • 如果有多个设备在运行,必须指定目标设备 。
  • 使用 devices 命令获取目标设备的序列号。
  • 获得序列号后,结合使用-s选项与 adb 命令来指定序列号。

安装应用

1
adb install path_to_apk

卸载应用

1
adb uninstall <package_name>

端口转发(forward)

可以使用 forward 命令设置任意端口转发,将特定主机端口上的请求转发到设备上的其他端口。

1
adb forward tcp:6100 tcp:7100

push与pull

push

如需将某个文件或目录(及其子目录)从PC端复制到Android端

1
adb push local remote

pull

从Android端复制某个文件或目录(及其子目录)到PC端

1
adb pull remote local

停止 adb 服务器

1
adb kill-server

停止 adb 服务器,可以通过发出其他任何 adb 命令来重启服务器。

shell 命令

可以使用 shell 命令通过 adb 发出设备命令,也可以使用该命令启动交互式 shell。

软件包管理器

  • 列出所有已安装应用

    1
    adb shell pm list packages
  • 列出安卓设备上的所有系统应用

    1
    adb shell pm list packages -s
  • 列出所有用户应用(非系统应用)

    1
    adb shell pm list packages -3
  • 清除指定应用程序的数据和缓存

    1
    adb shell pm clear package_name

屏幕截图

在shell中,进入/sdcard目录下,使用命令screencap filename
在PC端,从命令行使用 screencap,使用命令adb shell screencap /sdcard/filename

从手机端截图发送到电脑端

1
2
3
4
5
6
7
8
//使用以下命令截屏操作并将截图保存在手机的SD卡或内部存储中
adb shell /system/bin/screencap -p /sdcard/xxx.png

//确认截图操作成功后,使用以下命令将截图文件从手机拉取到电脑上的指定位置:
adb pull /sdcard/xxx.png ./xxx.png

//使用以下命令将手机上的截图删除以节省空间
adb shell rm /sdcard/xxx.png

logcat

1
adb logcat [options]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
adb logcat --help
Usage: logcat [options] [filterspecs]
options include:
-s Set default filter to silent. Equivalent to filterspec '*:S'
-f <file>, --file=<file> Log to file. Default is stdout
-r <kbytes>, --rotate-kbytes=<kbytes>
Rotate log every kbytes. Requires -f option
-n <count>, --rotate-count=<count>
Sets max number of rotated logs to <count>, default 4
--id=<id> If the signature id for logging to file changes, then clear
the fileset and continue
-v <format>, --format=<format>
Sets log print format verb and adverbs, where <format> is:
brief help long process raw tag thread threadtime time
and individually flagged modifying adverbs can be added:
color descriptive epoch monotonic printable uid
usec UTC year zone
Multiple -v parameters or comma separated list of format and
format modifiers are allowed.
-D, --dividers Print dividers between each log buffer
-c, --clear Clear (flush) the entire log and exit
if Log to File specified, clear fileset instead
-d Dump the log and then exit (don't block)
-e <expr>, --regex=<expr>
Only print lines where the log message matches <expr>
where <expr> is a Perl-compatible regular expression
-m <count>, --max-count=<count>
Quit after printing <count> lines. This is meant to be
paired with --regex, but will work on its own.
--print Paired with --regex and --max-count to let content bypass
regex filter but still stop at number of matches.
-t <count> Print only the most recent <count> lines (implies -d)
-t '<time>' Print most recent lines since specified time (implies -d)
-T <count> Print only the most recent <count> lines (does not imply -d)
-T '<time>' Print most recent lines since specified time (not imply -d)
count is pure numerical, time is 'MM-DD hh:mm:ss.mmm...'
'YYYY-MM-DD hh:mm:ss.mmm...' or 'sssss.mmm...' format
-g, --buffer-size Get the size of the ring buffer.
-G <size>, --buffer-size=<size>
Set size of log ring buffer, may suffix with K or M.
-L, --last Dump logs from prior to last reboot
-b <buffer>, --buffer=<buffer> Request alternate ring buffer, 'main',
'system', 'radio', 'events', 'crash', 'default' or 'all'.
Multiple -b parameters or comma separated list of buffers are
allowed. Buffers interleaved. Default -b main,system,crash.
-B, --binary Output the log in binary.
-S, --statistics Output statistics.
-p, --prune Print prune white and ~black list. Service is specified as
UID, UID/PID or /PID. Weighed for quicker pruning if prefix
with ~, otherwise weighed for longevity if unadorned. All
other pruning activity is oldest first. Special case ~!
represents an automatic quicker pruning for the noisiest
UID as determined by the current statistics.
-P '<list> ...', --prune='<list> ...'
Set prune white and ~black list, using same format as
listed above. Must be quoted.
--pid=<pid> Only prints logs from the given pid.
--wrap Sleep for 2 hours or when buffer about to wrap whichever
comes first. Improves efficiency of polling by providing
an about-to-wrap wakeup.

filterspecs are a series of
<tag>[:priority]

where <tag> is a log component tag (or * for all) and priority is:
V Verbose (default for <tag>)
D Debug (default for '*')
I Info
W Warn
E Error
F Fatal
S Silent (suppress all output)

'*' by itself means '*:D' and <tag> by itself means <tag>:V.
If no '*' filterspec or -s on command line, all filter defaults to '*:V'.
eg: '*:S <tag>' prints only <tag>, '<tag>:S' suppresses all <tag> log messages.

If not specified on the command line, filterspec is set from ANDROID_LOG_TAGS.

If not specified with -v on command line, format is set from ANDROID_PRINTF_LOG
or defaults to "threadtime"

reboot

1
2
3
adb reboot				// 重启设备
adb reboot bootloader // 进入引导加载模式
adb reboot recovery // 进入恢复模式

fastboot

1
2
3
4
5
fastboot devices		// 列出当前连接的设备及其序列号
fastboot reboot // 退出 fastboot 模式并正常重启设备。
fastboot flashing unlock // 解锁bl锁
fastboot flashing lock // 锁定bl锁
fastboot flash boot boot.img // 刷写镜像文件