adb常用命令

请先 登录 后评论

1 个回答

Luffy
使用adb工具连接设备
adb shell

获取系统日志
adb logcat

安装 APK
#让ADB设备端切换到root权限模式
C:\Users\aston> adb root
#重新挂载文件系统,将设备改为可读可写
C:\Users\aston> adb remount
#安装
C:\Users\aston> adb install “apk文件路径”
#重新安装
C:\Users\aston> adb install –r “apk文件路径”

将文件拷贝到主板
adb push “本地路径” “主板系统路径”

将主板文件拷贝到本地
adb pull “主板系统文件路径” “本地路径”




请先 登录 后评论
  • 1 关注
  • 0 收藏,325 浏览
  • Luffy 提出于 2023-07-05 11:12

相似问题