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