ChenYilong / iOSBlog

微博@iOS程序犭袁 的blog
MIT License
1.12k stars 190 forks source link

iOS 常见耗电量检测方案调研 #10

Open ChenYilong opened 7 years ago

ChenYilong commented 7 years ago

iOS 常见耗电量检测方案调研

本文对应 Demo 以及 Markdown 文件在 GitHub 仓库中,文中的错误可以提 PR 到这个文件,我会及时更改。

前言

如果我们想看下我们的 APP 或 SDK 是否耗电,需要给一些数据来展示,所以就对常见的电量测试方案做了一下调研。

影响 iOS 电量的因素,几个典型的耗电场景如下:

  1. 定位,尤其是调用GPS定位
  2. 网络传输,尤其是非Wifi环境
  3. cpu频率
  4. 内存调度频度
  5. 后台运行

系统接口

iOS 10 系统内置的 Setting 里可以查看各个 App 的电池消耗。

enter image description here

系统接口,能获取到整体的电池利用率,以及充电状态。代码演示如下:

    //#import <UIKit/UIDevice.h>
    UIDevice *device = [UIDevice currentDevice];
    device.batteryMonitoringEnabled = YES;
    //UIDevice返回的batteryLevel的范围在0到1之间。
    NSUInteger batteryLevel = device.batteryLevel * 100;
    //获取充电状态
    UIDeviceBatteryState state = device.batteryState;
    if (state == UIDeviceBatteryStateCharging || state == UIDeviceBatteryStateFull) {
        //正在充电和电池已满
    }

这些均不符合我们的检测需求,不能检测固定某一时间段内的电池精准消耗。

测试平台

阿里云移动测试MQC

MQC 调研,结论:没有iOS性能测试,无法提供耗电量指标。

解释 截图
安卓有性能测试项目 enter image description here
安卓的性能测试项目 enter image description here
iOS没有性能测试,无法提供耗电量指标 enter image description here

百度移动云测试中心 MTC 同样没有 iOS 的性能测试。

其他测试平台类似。

常用的电量测试方法:

  1. 硬件测试
  2. 软件工具检测

软件工具检测

下面介绍通过软件 Instrument 来进行耗电检测。

iOS电量测试方法

1.iOS 设置选项 ->开发者选项->logging ->start recording

enter image description here

2.进行需要测试电量的场景操作后进入开发者选项点击stop recording

3.将iOS设备和Mac连接

4.打开Instrument,选择Energy Diagnostics

5.选择 File > Import Logged Data from Device

enter image description here

6.保存的数据以时间轴输出到Instrument面板

enter image description here

其他

硬件检测

通过硬件 PowerMonitor 可以精准地获得应用的电量消耗。

步骤如下:

  1. 拆开iOS设备的外壳,找到电池后面的电源针脚。
  2. 连接电源监控器的设备针脚
  3. 运行应用
  4. 测量电量消耗

    下图展示了与iPhone的电池针脚连接的电源监控器工具。

    enter image description here

    可以参考:Using Monsoon Power Monitor with iPhone 5s

    • 可以精准地获得应用的电量消耗。
    • 设备价格 $771.00 USD
    • 需要拆解手机

这样看来,只有 Instrument 的方案更适合,大家有什么方案的话,也可以贴在下面。

all-reward

ChenYilong commented 7 years ago

Reference: 《WWDC17 教你开发省电的 app》

wangzhezhijian commented 7 years ago

很不错,马上试试,然后再后续评论

ShenYj commented 7 years ago

不错

ifelseboyxx commented 6 years ago

https://cloud.tencent.com/community/article/877849 这篇腾讯的,特别详细!!

ChenYilong commented 4 years ago

https://cloud.tencent.com/community/article/877849 这篇腾讯的,特别详细!!

优质!