adb

作者: lhl_012 | 来源:发表于2018-11-23 11:33 被阅读15次

    adb tcpip 端口
    adb connect <device-ip-address>
    adb disconnect <device-ip-address>

    adb shell pm list packages -s
    -f 显示应用关联的 apk 文件
    -d 只显示 disabled 的应用
    -e 只显示 enabled 的应用
    -s 只显示系统应用
    -3 只显示第三方应用
    -i 显示应用的 installer
    -u 包含已卸载应用
    <FILTER> 包名包含 <FILTER> 字符串

    adb install [-lrtsdg] <path_to_apk>
    -l 将应用安装到保护目录 /mnt/asec
    -r 允许覆盖安装
    -t 允许安装 AndroidManifest.xml 里 application 指定 android:testOnly="true" 的应用
    -s 将应用安装到 sdcard
    -d 允许降级覆盖安装
    -g 授予所有运行时权限

    adb shell pm clear <packagename>

    adb shell dumpsys activity activities | grep mFocusedActivity

    adb shell input keyevent 224 点亮 223 熄灭
    adb shell input text hello

    adb shell getprop ro.product.model 设备型号

    adb shell wm size 屏幕分辨率
    adb shell wm density 屏幕密度
    adb shell ifconfig IP 地址
    adb shell cat /proc/cpuinfo CPU 信息

    相关文章

      网友评论

          本文标题:adb

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