Android L电池历史记录.par工具缺失

时间:2014-07-01 00:25:51

标签: android android-5.0-lollipop

由于Google在其网站上提供了更新的Android L SDK。我一直在尝试测试新的电池历史记录功能。 Google API概述website声称该工具在sdk / tools下可用。不幸的是,即使确保我已经完全更新了SDK,我也无法在任何地方找到该工具。有谁知道我如何访问这个工具?

2 个答案:

答案 0 :(得分:9)

如果您想查看KitKat及以下设备的电池历史数据,请点击battery-historian,然后运行以下命令:

$ adb shell dumpsys batterystats --reset

>> run some test. either manual or with espresso, or monkeyrunner ... <<

$ adb bugreport > bugreport.txt
$ ./historian.py bugreport.txt > out.html

>> open out.html with your favorite browser <<

如果使用季风或任何其他工具生成功耗文件,则可以通过使用-p参数传递

来添加此文件(行)

修改 获取bug报告的更好,更快的方法是使用:

# create battery stats table
adb shell dumpsys batterystats > bugreport
# append the creation time, which is way more accurate
echo "== dumpstate: `adb shell date +'%Y-%m-%d %H:%M:%S'`" >> bugreport

答案 1 :(得分:4)

它不会错过它可以在:

https://github.com/google/battery-historian

注意:它目前需要依赖,monsoon.py不在AOSP中(尚未) - 但可以在这里找到:

https://chromium.googlesource.com/experimental/chromium/src/+/master/tools/telemetry/telemetry/core/platform/power_monitor/monsoon_power_monitor.py