Home | History | Annotate | Download | only in power
      1 <html devsite>
      2   <head>
      3     <title>Power Management</title>
      4     <meta name="project_path" value="/_project.yaml" />
      5     <meta name="book_path" value="/_book.yaml" />
      6   </head>
      7   <body>
      8   <!--
      9       Copyright 2017 The Android Open Source Project
     10 
     11       Licensed under the Apache License, Version 2.0 (the "License");
     12       you may not use this file except in compliance with the License.
     13       You may obtain a copy of the License at
     14 
     15           http://www.apache.org/licenses/LICENSE-2.0
     16 
     17       Unless required by applicable law or agreed to in writing, software
     18       distributed under the License is distributed on an "AS IS" BASIS,
     19       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     20       See the License for the specific language governing permissions and
     21       limitations under the License.
     22   -->
     23 
     24 
     25 
     26 <p>Battery life is a perennial user concern. To extend battery life, Android
     27 continually adds new features and optimizations to help the platform optimize
     28 the off-charger behavior of applications and devices.</p>
     29 <p>Android includes the following battery life enhancements:</p>
     30 
     31 <ul>
     32 <li><a href="#app-standby">App Standby</a>. The platform can
     33 place unused applications in App Standby mode, temporarily restricting network
     34 access and deferring syncs and jobs for those applications.</li>
     35 <li><a href="#doze">Doze</a>. The platform can enter a state of
     36 deep sleep (periodically resuming normal operations) if users have not actively
     37 used their device (screen off and stationary) for extended periods of time.
     38 Android 7.0 and later also enables Doze to trigger a lighter set of optimizations when
     39 users turn off the device screen yet continue to move around.</li>
     40 <li><a href="#exempt-apps">Exemptions</a>. System apps and
     41 cloud messaging services preloaded on a device are typically exempted from App
     42 Standby and Doze by default (although app developers can intent their
     43 applications into this setting). Users can exempt applications via the Settings
     44 menu.</li>
     45 </ul>
     46 
     47 <p>The following sections describe these enhancements.</p>
     48 
     49 <h2 id="app-standby">App Standby</h2>
     50 <p>App Standby extends battery life by deferring background network activity
     51 and jobs for applications the user is not actively using.</p>
     52 
     53 <h3 id="app-standby-life">App Standby lifecycle</h3>
     54 <p>The platform detects inactive applications and places them in App Standby
     55 until the user begins actively engaging with the application.</p>
     56 
     57 <table>
     58 <tbody>
     59 <tr>
     60 <th width=46%>Detection</th>
     61 <th width=23%>During App Standby</th>
     62 <th width=31%>Exit</th>
     63 </tr>
     64 
     65 <tr>
     66 <td><p>The platform detects an application is inactive when the device is not
     67 charging <strong>and</strong> the user has not launched the application directly
     68 or indirectly for a specific amount of clock time as well as a specific amount
     69 of screen-on time. (Indirect launches occur when a foreground app accesses a
     70 service in a second app.)</p></td>
     71 <td><p>The platform prevents applications from accessing the network more than
     72 once a day, deferring application syncs and other jobs.</p></td>
     73 <td><p>The platform exits the app from App Standby when:</p>
     74 <ul>
     75 <li>Application becomes active.</li>
     76 <li>Device is plugged in and charging.</li>
     77 </ul>
     78 </td>
     79 </tr>
     80 </tbody>
     81 </table>
     82 
     83 <p>Active applications are unaffected by App Standby. An application is active
     84 when it has:</p>
     85 <ul>
     86 <li>A process currently in the foreground (either as an activity or foreground
     87 service, or in use by another activity or foreground service), such as
     88 notification listener, accessibility services, live wallpaper, etc.</li>
     89 <li>A notification viewed by the user, such as in the lock screen or
     90 notification tray.</li>
     91 <li>Explicitly been launched by the user.</li>
     92 </ul>
     93 <p>An application is inactive if none of the above activities has occurred for
     94 a period of time.
     95 </p>
     96 
     97 <h3 id=testing_app_standby>Testing App Standby</h3>
     98 <p>You can manually test App Standby using the following <code>adb</code> commands:</p>
     99 
    100 <pre class="devsite-click-to-copy">
    101 <code class="devsite-terminal">adb shell dumpsys battery unplug</code>
    102 <code class="devsite-terminal">adb shell am set-idle packageName true</code>
    103 <code class="devsite-terminal">adb shell am set-idle packageName false</code>
    104 <code class="devsite-terminal">adb shell am get-idle packageName</code>
    105 </pre>
    106 
    107 <h2 id="doze">Doze</h2>
    108 
    109 <p>Doze extends battery life by deferring application background CPU and
    110 network activity when a device is unused for long periods.</p>
    111 
    112 <p>Idle devices in Doze periodically enter a maintenance window, during which
    113 apps can complete pending activities (syncs, jobs, etc.). Doze then resumes sleep
    114 for a longer period of time, followed by another maintenance window. The
    115 platform continues the Doze sleep/maintenance sequence, increasing the length of
    116 idle each time, until a maximum of a few hours of sleep time is reached. At all
    117 times, a device in Doze remains aware of motion and immediately leaves Doze
    118 if motion is detected.</p>
    119 
    120 <p>Android 7.0 and later extends Doze to trigger a lighter set of optimizations every time
    121 a user turns off the device screen, even when the user continues to move around,
    122 enabling longer lasting battery life.</p>
    123 
    124 <p>System services (such as telephony) may be preloaded and exempted from Doze
    125 by default. Users can also exempt specific applications from Doze in the
    126 Settings menu. By default, Doze is <strong>disabled</strong> in AOSP; for details on
    127 enabling Doze, see <a href="#integrate-doze">Integrating Doze</a>.</p>
    128 
    129 <h3 id="doze-reqs">Doze requirements</h3>
    130 <p>Doze support requires the device has a cloud messaging service, such as
    131 <a href="https://developers.google.com/cloud-messaging/">Google Cloud Messaging
    132 (GCM)</a>. This enables the device to know when to wake from Doze.</p>
    133 <p>Full Doze support also requires a
    134 <a href="/devices/sensors/sensor-types.html#significant_motion">Significant
    135 Motion Detector (SMD)</a> on the device; however, the lightweight Doze mode in
    136 Android 7.0 and later does not require an SMD. If Doze is enabled on a device that:</p>
    137 <ul>
    138 <li>Has an SMD, full Doze optimizations occur (includes lightweight
    139 optimizations).</li>
    140 <li>Does not have an SMD, only the lightweight Doze optimizations occur.</li>
    141 </ul>
    142 
    143 
    144 <h3 id="doze-life">Doze lifecycle</h3>
    145 
    146 <p>Doze begins when the platform detects the device is idle and
    147 ends when one or more exit criteria activities occur.</p>
    148 
    149 <table>
    150 <tbody>
    151 <tr>
    152 <th width=20%>Detection</th>
    153 <th width=60%>During Doze</th>
    154 <th width=20%>Exit</th>
    155 </tr>
    156 <tr>
    157 <td><p>The platform detects a device is idle when:</p>
    158 <ul>
    159 <li>Device is stationary (using significant motion detector).</li>
    160 <li>Device screen is off for some amount of time.</li>
    161 </ul>
    162 <p>Doze mode does not engage when the device is plugged into a power charger.
    163 </p>
    164 </td>
    165 <td><p>The platform attempts to keep the system in a sleep state, periodically
    166 resuming normal operations during a maintenance window then returning the device
    167 to sleep for longer repeating periods. During sleep, the following
    168 restrictions are active:</p>
    169 <ul>
    170 <li>Apps not allowed network access.</li>
    171 <li>App wakelocks ignored.</li>
    172 <li>Alarms deferred. Excludes alarm clock alarms and alarms set using
    173 <code>setAndAllowWhileIdle()</code> (limited to 1 per 15 minutes per app while
    174 in Doze). This exemption is intended for apps (such as Calendar) that must show
    175 event reminder notifications.</li>
    176 <li>Wi-Fi scans not performed.</li>
    177 <li>SyncAdapter syncs and JobScheduler jobs deferred until the next maintenance
    178 window.</li>
    179 <li>Apps receiving SMS and MMS messages are put on a temporary whitelist so
    180 they can complete their processing.</li>
    181 </ul>
    182 </td>
    183 <td><p>The platform exits the device from Doze when it detects:</p>
    184 <ul>
    185 <li>User interaction with device.</li>
    186 <li>Device movement.</li>
    187 <li>Device screen turns on.</li>
    188 <li>Imminent AlarmClock alarm.</li>
    189 </ul>
    190 <p>Notifications do not cause the device to exit from Doze.</p>
    191 </td>
    192 </tr>
    193 </tbody>
    194 </table>
    195 
    196 <p>Android 7.0 and later extends Doze by enabling a lightweight sleep mode during screen
    197 off, before the device is idle.</p>
    198 <p><img src="/devices/tech/images/doze_lightweight.png"></p>
    199 <p class="img-caption">Figure 1. Doze modes for non-stationary and stationary
    200 devices.</p>
    201 
    202 <table>
    203 <tbody>
    204 <tr>
    205 <th>Action</th>
    206 <th>Doze</th>
    207 <th>Lightweight Doze</th>
    208 </tr>
    209 <tr>
    210 <td>Trigger</td>
    211 <td>Screen off, on battery, stationary</td>
    212 <td>Screen off, on battery (unplugged)</td>
    213 </tr>
    214 <tr>
    215 <td>Timing</td>
    216 <td>Successively increasing periods with maintenance</td>
    217 <td>Repeated N-minute periods with maintenance windows</td>
    218 </tr>
    219 <tr>
    220 <td>Restrictions</td>
    221 <td>No network access, wake lock, or GPS/Wi-FI scan. Alarms and jobs/syncs deferred.</td>
    222 <td>No network access. Jobs/syncs deferred except during maintenance windows.</td>
    223 </tr>
    224 <tr>
    225 <td>Behavior</td>
    226 <td>Only high-priority push notification messages received.</td>
    227 <td>All real-time messages (instant messages, calls, etc.) received. High-priority push
    228   notification message enables temporary network access.</td>
    229 </tr>
    230 <tr>
    231 <td>Exit</td>
    232 <td>Motion, screen on, or alarm clock alarm.</td>
    233 <td>Screen on.</td>
    234 </tr>
    235 </tbody>
    236 </table>
    237 
    238 <h3 id="doze-interactions">Interaction with App Standby</h3>
    239 <ul>
    240 <li>Time spent in Doze does not count towards App Standby.</li>
    241 <li>While the device is in Doze, idle applications are allowed to perform normal
    242 operations at least once a day.</li>
    243 </ul>
    244 
    245 <h3 id="integrate-doze">Integrating Doze</h3>
    246 
    247 <p>When Doze is enabled, devices that support
    248 <a href="/devices/sensors/sensor-types.html#significant_motion">SENSOR_TYPE_SIGNIFICANT_MOTION</a>
    249 will perform full Doze optimizations (includes lightweight optimizations);
    250 devices without an SMD will perform only lightweight Doze optimizations. Android
    251 automatically selects the appropriate Doze optimizations and no vendor
    252 configuration is necessary.</p>
    253 
    254 <p>To enable Doze for a device, perform the following tasks:</p>
    255 
    256 <ol>
    257 <li>Confirm the device has a cloud messaging service installed.</li>
    258 <li>In the device overlay config file
    259 <code>overlay/frameworks/base/core/res/res/values/config.xml</code>, set
    260 <code>config_enableAutoPowerModes</code> to <strong>true</strong>:
    261 <pre class="devsite-click-to-copy">
    262 &lt;bool name="config_enableAutoPowerModes"&gt;true&lt;/bool&gt;
    263 </pre>
    264 In AOSP, this parameter is set to false (Doze disabled) by default.<br>
    265 </li>
    266 <li>Confirm that preloaded apps and services:
    267 <ul>
    268 <li>Use the
    269 <a href="https://developer.android.com/training/monitoring-device-state/doze-standby.html">power-saving
    270 optimization guidelines</a>. For details, see <a href="#test-apps">Testing and
    271 optimizing applications</a>.
    272 <p><strong>OR</strong></p>
    273 <li>Are exempted from Doze and App Standby. For details, see
    274 <a href="#exempt-apps">Exempting applications</a>.</li>
    275 </ul>
    276 </li>
    277 <li>Confirm the necessary services are exempted from Doze.</li>
    278 </ol>
    279 
    280 <h4 id="doze-tips">Tips</h4>
    281 <ul>
    282 <li>If possible, use GCM for
    283 <a href="https://developers.google.com/cloud-messaging/downstream">downstream
    284 messaging</a>.</li>
    285 <li>If your users must see a notification right away, use a
    286 <a href="https://developers.google.com/cloud-messaging/concept-options#setting-the-priority-of-a-message">GCM
    287 high priority message</a>.</li>
    288 <li>Provide sufficient information within the initial
    289 <a href="https://developers.google.com/cloud-messaging/concept-options#payload">message
    290 payload</a> (to avoid unnecessary subsequent network access).</li>
    291 <li>Set critical alarms with
    292 <a href="http://developer.android.com/reference/android/app/AlarmManager.html#setAndAllowWhileIdle(int,%20long,%20android.app.PendingIntent)">setAndAllowWhileIdle()</a>
    293 and
    294 <a href="http://developer.android.com/reference/android/app/AlarmManager.html#setExactAndAllowWhileIdle(int,%20long,%20android.app.PendingIntent)">setExactAndAllowWhileIdle()</a>.
    295 </li>
    296 </ul>
    297 
    298 <h4 id="test-apps">Testing and optimizing applications</h4>
    299 <p>Test all applications (especially preloaded applications) in Doze mode. For
    300 details, refer to
    301 <a href="https://developer.android.com/training/monitoring-device-state/doze-standby.html#testing_doze_and_app_standby">Testing
    302 Doze and App Standby</a>.</p>
    303 
    304 <p class="note"><strong>Note</strong>: MMS/SMS/Telephony services function independently
    305 of Doze and will always wake client apps even while the device remains in Doze
    306 mode.</p>
    307 
    308 <h2 id="exempt-apps">Exempting applications</h2>
    309 <p>You can exempt applications from being subject to Doze or App Standby.
    310 Exemptions may be needed in the following use cases:</p>
    311 <ul>
    312 <li>OEM using non-GCM Cloud Messaging platform</li>
    313 <li>Carrier using non-GCM Cloud Messaging platform</li>
    314 <li>Third-party application using non-GCM Cloud Messaging platform</li>
    315 </ul>
    316 
    317 <p class="warning"><strong>Warning</strong>: Do not exempt apps to avoid testing
    318 and optimizing. Unnecessary exemptions undermine the benefits of Doze and App
    319 Standby and can compromise the user experience, so we strongly suggest
    320 minimizing such exemptions as they allow applications to defeat beneficial
    321 controls the platform has over power use. If users become unhappy about the
    322 power consumption of these apps, it can lead to frustration, bad experiences
    323 (and negative user reviews for the app), and customer support questions. For
    324 these reasons, we strongly recommend that you do not exempt third-party
    325 applications and instead exempt only cloud messaging services or apps with
    326 similar functions.</p>
    327 
    328 <p>Apps exempted by default are listed in a single view in <em>Settings > Battery</em>.
    329 This list is used for exempting the app from both Doze and App
    330 Standby modes. To provide transparency to the user, the Settings menu
    331 <strong>MUST</strong> show all exempted applications.</p>
    332 
    333 <p>Users can manually exempt apps via <em>Settings > Battery > Battery optimization > All apps</em>
    334 and then selecting the app to turn off (or back on) optimization. However, users cannot unexempt
    335 any application or service that is exempted by default in the system image.</p>
    336 
    337   </body>
    338 </html>
    339