-
耗电量测试:
adb shell dumpsys batterystats --reset # 清理耗电量数据
adb shell dumpsys batterystats --enable full-wake-history # 录制
adb bugreport bugreport.zip # android 7 收集数据
adb bugreport > bugreport.txt # android 6 收集数据
-
卡顿分析
工具: systrace
sdk/platform-tools/systrace
需要python2.7
安装win32con : pip install pypoiwin32
使用: python systrace.py -e 设备id:端口 -l
影响因素:
- 内存问题 : (内存抖动、full gc 垃圾回收)
- cpu (计算耗时)
- render (复杂布局、overdraw)
- 帧分析: adb -s devicesname shell dumpsys gfxinfo | less
- 冰冻帧: 一个帧超过0.7s
adb shell dumpsys meminfo #内存
adb shell dumpsys meminfo | findstr pkg_name # 查看某个包的内存信息
adb shell dumpsys cpuinfo #cpu
adb shell getprop ro.product.cpu.abi #查看android cpu是32位还是64位
adb shell getprop ro.build.version.sdk # 获取系统api版本
adb shell getprop ro.build.version.release # 获取系统版本