page.title=Data Saver metaDescription=User-enabled data usage optimization. page.keywords="android N", "data usage", "metered network" @jd:body

In this document

  1. Checking Data Saver Preferences
  2. Monitoring Changes to Data Saver Preferences
  3. Testing with Android Debug Bridge Commands

Over the life of a smartphone, the cost of a cellular data plan can easily exceed the cost of the device itself. In the N Developer Preview, users can enable Data Saver on a device-wide basis in order to use less data, whether roaming, near the end of the billing cycle, or on a small prepaid data pack.

When a user enables Data Saver in Settings and the device is on a metered network, the system blocks background data usage and signals apps to use less data in the foreground wherever possible. Users can whitelist specific apps to allow background metered data usage even when Data Saver is turned on.

The N Developer Preview extends the {@link android.net.ConnectivityManager} API to provide apps with a way to retrieve the user’s Data Saver preferences and monitor preference changes. It is considered good practice for apps to check whether the user has enabled Data Saver and make an effort to limit foreground and background data usage.

Checking Data Saver Preferences

In the N Developer Preview, apps can use the {@link android.net.ConnectivityManager} API to determine what data usage restrictions are being applied. The {@code getRestrictBackgroundStatus()} method returns one of the following values:

{@code RESTRICT_BACKGROUND_STATUS_DISABLED}
Data Saver is disabled.
{@code RESTRICT_BACKGROUND_STATUS_ENABLED}
The user has enabled Data Saver for this app. Apps should make an effort to limit data usage in the foreground and gracefully handle restrictions to background data usage.
{@code RESTRICT_BACKGROUND_STATUS_WHITELISTED}
The user has enabled Data Saver but the app is whitelisted. Apps should still make an effort to limit foreground and background data usage.

It is considered good practice to limit data usage whenever the device is connected to a metered network, even if Data Saver is disabled or the app is whitelisted. The following sample code uses {@link android.net.ConnectivityManager#isActiveNetworkMetered ConnectivityManager.isActiveNetworkMetered()} and {@code ConnectivityManager.getRestrictBackgroundStatus()} to determine how much data the app should use:

ConnectivityManager connMgr = (ConnectivityManager)
        getSystemService(Context.CONNECTIVITY_SERVICE);
// Checks if the device is on a metered network
if (connMgr.isActiveNetworkMetered()) {
  // Checks user’s Data Saver settings.
  switch (connMgr.getRestrictBackgroundStatus()) {
    case RESTRICT_BACKGROUND_STATUS_ENABLED:
    // Background data usage is blocked for this app. Wherever possible,
    // the app should also use less data in the foreground.

    case RESTRICT_BACKGROUND_STATUS_WHITELISTED:
    // The app is whitelisted. Wherever possible,
    // the app should use less data in the foreground and background.

    case RESTRICT_BACKGROUND_STATUS_DISABLED:
    // Data Saver is disabled. Since the device is connected to a
    // metered network, the app should use less data wherever possible.
  }
} else {
  // The device is not on a metered network.
  // Use data as required to perform syncs, downloads, and updates.
}

Monitoring Changes to Data Saver Preferences

Apps can monitor changes to Data Saver preferences by creating a {@link android.content.BroadcastReceiver} to listen for {@code ConnectivityManager.ACTION_RESTRICT_BACKGROUND_CHANGED} ({@code "android.net.conn.RESTRICT_BACKGROUND_CHANGED"}) and dynamically registering the receiver with {@link android.content.Context#registerReceiver Context.registerReceiver()}. When an app receives this broadcast, it should check if the new Data Saver preferences affect its permissions by calling {@code ConnectivityManager.getRestrictBackgroundStatus()}.

Note: The system only sends this broadcast to apps that dynamically register for them with {@link android.content.Context#registerReceiver Context.registerReceiver()}. Apps that register to receive this broadcast in their manifest will not receive them.

Testing with Android Debug Bridge Commands

The Android Debug Bridge (ADB) provides a few commands that you can use to check and configure network permissions:
$ adb shell dumpsys netpolicy
Generates a report that includes the current global background network restriction setting, package UIDs currently on a whitelist, and the network permissions of other known packages.
$ adb shell cmd netpolicy
Displays a full list of Network Policy Manager (netpolicy) commands.
$ adb shell cmd netpolicy set restrict-background <boolean>
Enables or disables Data Saver mode when passing true or false, respectively.
$ adb shell cmd netpolicy add restrict-background-whitelist <UID>
Adds the specified package UID to the whitelist to allow background metered data usage.
$ adb shell cmd netpolicy remove restrict-background-whitelist <UID>
Removes the specified package UID from the whitelist to block background metered data usage while Data Saver is enabled.