美文网首页
adb 指令

adb 指令

作者: 不想敲代码 | 来源:发表于2019-01-17 10:05 被阅读0次

    adb devices  : 列出电脑所连接的安卓设备

    adb push pc_path phone_path : 将pc 文件放在 phone 上

    adb pull  phone_path  pc_path : 将 phone 文件 拉在电脑上

    adb install  apk_path : 安装一个apk. 

    adb install -r apk_path : 强制安装

    net -start -oan : 查看端口

    adb shell : 进入设备系统下 (linux 环境)

    adb shell  ls  -l :查看当前设备的目录结构

    adb shell logcat :查看系统运行日志信息

    注意 : 如果当前电脑连接多台设备, 需要指定设备  需要在 adb 后面加 -s 设备序列号

    相关文章

      网友评论

          本文标题:adb 指令

          本文链接:https://www.haomeiwen.com/subject/lpmbdqtx.html