Android ADB 常用命令
2024-2-23
| 2024-9-2
0  |  Read Time 0 min
type
status
date
slug
summary
tags
category
icon
password
引言
引言
工欲善其事必先利其器
 

Adb 常用命令

命令
释义
示例
adb connect device_ip_address
连接设备
adb disconnect
断开所以设备连接(无线)
adb version
adb 版本号查询
adb devices
查看连接的设备
adb install 路径
安装应用
adb uninstall 包名
卸载应用
adb shell pm list package
app 的包名列表
adb shell dumpsys package com.yingzi.leakcanarytest
adb pull /data/vendor/logs  xxx
拉取日志到 xxx 文件夹
adb shell pm list packages
展示所有的包
adb install -d xxx.apk
安装更低版本的应用
adb kill-server
杀掉 adb 服务
adb start-server
启动 adb 服务
adb shell input keyevent 3
home 键
adb shell input keyevent 4
返回键
adb reboot
重启
adb shell am start com.android.settings/com.android.settings.Settings
启动设置页面
adb shell am force-stop <package name>
关闭指定应用程序
adb pull <手机路径>   <本机路径>
从手机中拉取信息到本地电脑上
adb push <本机路径>  <手机路径>
从本地电脑推送信息到手机上
adb shell am start -n <Activity 全路径>
终端启动应用程序:
adb shell am force-stop <App 包名>
杀掉 进程
adb shell am force-stop <packagename>
adb shell pm list packages
查看应用列表
adb shell dumpsys activity activities
查看当前 activity
adb shell ps
 
  • 性能
  • 调试
  • Android MVVM 应用架构Android 中使用 Kotlin 协程
    • Utterance
    Catalog