Platform power management with Doze (original) (raw)

To improve device battery life, Android can affect the device state by monitoring device use and wakefulness. The platform can enter a state of sleep to pause activities from running while the device is unused.

About Doze

Doze extends battery life by deferring app background CPU and network activity when a device is unused for long periods.

Idle devices in Doze periodically enter a maintenance window, during which apps can complete pending work (syncs, jobs, etc.). Doze then resumes sleep for a longer period of time, followed by another maintenance window. The platform continues the Doze sleep/maintenance sequence, increasing the length of idle each time, until a maximum of a few hours of sleep time is reached. At all times, a device in Doze remains aware of motion and immediately leaves Doze if motion is detected.

Android 7.0 and higher extends Doze to trigger a lighter set of optimizations every time a user turns off the device screen, even when the user continues to move around, enabling longer-lasting battery life.

Critical system services are generally set up by device manufacturers to be exempt from Doze. Users can also exempt specific apps from Doze using the Settings menu. However, exempting apps may cause battery drain on the device. By default, Doze is disabled in AOSP; for details on enabling Doze, see Integrating Doze.

Doze requirements

Doze support requires that the device has a cloud messaging service, such asFirebase Cloud Messaging (FCM). External trigger events, such as cloud messages, can temporarily wake apps to do work while the device remains in Doze mode.

Full Doze support also requires asignificant motion detector (SMD) on the device; however, the lightweight Doze mode in Android 7.0 and higher doesn't require an SMD. If Doze is enabled on a device that:

Doze lifecycle

Doze begins when the platform detects that the device is idle and ends when one or more exit criteria activities occur.

The platform detects that a device is idle when:

Doze mode doesn't engage while a battery-powered device is plugged into a power charger.

During Doze

The platform attempts to keep the system in a sleep state, periodically resuming normal operations during a maintenance window then returning the device to sleep for longer repeating periods. During sleep, the following restrictions are active:

Exit

The platform exits the device from Doze when it detects:

Notifications don't cause the device to exit from Doze.

Android 7.0 and higher extends Doze by enabling a lightweight sleep mode during screen off, before the device is idle.

Figure 1. Doze modes for nonstationary and stationary devices.

Action Doze Lightweight Doze
Trigger Screen off, on battery, stationary Screen off, on battery (unplugged)
Timing Successively increasing periods with maintenance Repeated N-minute periods with maintenance windows
Restrictions No network access, wake lock, or GPS/Wi-Fi scan; alarms and jobs/syncs deferred No network access; jobs/syncs deferred except during maintenance windows
Behavior Only high-priority push notification messages received All real-time messages (instant messages, calls, etc.) received; high-priority push notification message enables temporary network access
Exit Motion, screen on, or alarm clock alarm Screen on

Interaction with App Standby

Integrate Doze

When Doze is enabled, devices that supportSENSOR_TYPE_SIGNIFICANT_MOTIONperform full Doze optimizations (including lightweight optimizations); devices without an SMD perform only lightweight Doze optimizations. Android automatically selects the appropriate Doze optimizations and vendor configuration isn't necessary.

To enable Doze for a device:

  1. Confirm that the device has a cloud messaging service installed.
  2. In the device overlay config fileoverlay/frameworks/base/core/res/res/values/config.xml, setconfig_enableAutoPowerModes to true:
    true
    In AOSP, this parameter is set to false (Doze disabled) by default.
  3. Confirm that preloaded apps and services:
  4. Confirm that the necessary services are exempted from Doze.

Tips

Test and optimize apps

Test all apps (especially preloaded apps) in Doze mode. For details, refer toTesting with Doze and App Standby.