adb

adb tcpip 端口
adb connect
adb disconnect

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

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

adb shell pm clear

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)