基础命令

adb connect 192.168.1.1:5555
#连接设备

输入adb install ; 然后再将设备拖入到黑窗口。然后出现完整的代码:adb install “apk地址”,代表成功,回车,出现success安装成功
#安装APK

adb uninstall com.leenleda.ips
#卸载APK

adb disconnect 192.168.1.1:5555
#移除连接

adb devices
#显示设备

应用管理

adb shell pm list packages
#列出所有软件包名

adb shell pm list packages -3
#列出所有第三方软件包名

adb shell am start -a android.intent.action.VIEW -d http://172.21.21.249:1301
#打开指定网页链接

adb shell am force-stop com.android.browser
#关闭浏览器

adb shell am start com.leenleda.ips/com.leenleda.ips.activity.MainActivity
#启动App

adb shell am force-stop com.leenleda.ips
#停止App

adb shell dumpsys window windows | findstr Current
#获取App的package和launch_activity

adb shell "pm path cn.runyf.sendv2"
adb pull /data/app/cn.runyf.sendv2-WGqSxXoa6JXVV4Kgex0R3w==/base.apk
#提取apk

系统相关

adb shell ifconfig
#显示网络

adb shell dumpsys audio
#显示音量

adb shell getprop ro.build.version.release
#显示系统版本号

adb shell cat proc/meminfo
#查看内存信息

adb shell top -m 10 -s cpu
#查看cpu使用情况:m显示最大数量,-s按指定行排序

adb shell svc usb setFunctions rndis
#设置USB网络共享
最后修改:2024 年 03 月 13 日
如果觉得我的文章对你有用,请随意赞赏