2019-12-18

adb 命令

安装android

shell命令:adb shell

安装包: adb install  包的路径   卸载包:adb uninstall 包名  启动  adb shell am start  包名

查看链接设备 adb devices    断开链接 adb disconnect 

内存占用:adb shell dumpsys  meminfo  *pid*       adb shell dumpsys meminfo  包名

cpu的占用率:adb shell top              adb  shell "top | grep  包名"

flash写入测试: adb shell  dmesg                  adb shell "dumpsys cpuinfo |grep cn.cibntv.ott"

进程状态: adb shell ps

adb 截图命令:

adb shell /system/bin/screencap -p /sdcard/screenshot.png

adb pull /sdcard/screenshot.png d:\download

重新启动:adb start-server  结束 adb start-server

adb抓log   adb logcat >文件地址如adb logcat > d:\1.txt

获取手机电池信息:adb shell dumpsys battery

有些时候应用卡死了,需要强制停止,则执行以下命令:

adb shell am force-stop

你可能感兴趣的:(2019-12-18)