1、查看设备
adb devices
2、安装软件
adb install <apk文件路径> :这个命令将指定的apk文件安装到设备上
3、 卸载软件
adb uninstall <软件名>
adb uninstall -k <软件名>
如果加 -k 参数,为卸载软件但是保留配置和缓存文件.
4、 进入设备或模拟器的shell:
adb shell
通过上面的命令,就可以进入设备或模拟器的shell环境中,在这个Linux Shell中,你可以执行各种Linux的命令,另外如果只想执行一条shell命令,可以采用以下的方式:
adb shell [command]
如:adb shell dmesg会打印出内核的调试信息。
5. 发布端口
可以设置任意的端口号,做为主机向模拟器或设备的请求端口。如:
adb forward tcp:5555 tcp:8000
6. 从电脑上发送文件到设备
adb push <本地路径> <远程路径>
用push命令可以把本机电脑上的文件或者文件夹复制到设备(手机)
7. 从设备上下载文件到电脑
adb pull <远程路径> <本地路径>
用pull命令可以把设备(手机)上的文件或者文件夹复制到本机电脑
8、查看bug报告
adb bugreport
9、记录无线通讯日志
一般来说,无线通讯的日志非常多,在运行时没必要去记录,但我们还是可以通过命令,设置记录:
adb shell
logcat -b radio
10、获取设备的ID和序列号
adb get-product
adb get-serialno
adb shell
sqlite3
11、查找文件
find -name ee
find -name >d.txt
12、 华为查找ROM信息
adb shell getprop ro.hw.oemName
13、签名
keytool -printcert -file .\CERT.RSA
14、查看品牌信息
adb shell getprop |findstr "brand"
15、启动页面
adb shell am start -n 包名/activity名称
16、查看版本信息
adb shell dumpsys package 包名 |findstr "version"
17、屏幕
亮屏
adb shell svc power stayon true
adb shell svc power stayon false
18、内存
查看内存信息
adb shell cat /proc/meminfo
所有进程
adb shell dumpsys meminfo
查看某个进程
adb shell dumpsys meminfo 330(进程号)
19、log
清除并推出
adb logcat -d
清除缓冲区log
adb logcat -c
输出log
adb logcat -v time >log.txt
20、清除数据
adb shell pm clear 包名
21、截图
截图
adb shell screencap -p /sdcatd/test.png
导出
adb shell pull /sdcatd/test.png
22、授权
adb shell pm grant 包名 android.permission.RECORD_AUDIO
23、 事件
点击
adb shell input tap <X><Y>
如:adb shell input tap 540 1104
滑动
adb shell input swipe <X1><Y1><X2><Y2>
长按
adb shell input swipe <X1><Y1><X2><Y2>[duration(ms)]
如:adb shell input swipe 250 300 250 300 1000