Skip to content
Snippets Groups Projects
Commit 6a03a7aa authored by YK Hung's avatar YK Hung Committed by Android (Google) Code Review
Browse files

Merge "Remove user id from saver enabled acknowledge" into main

parents 0c7d0f6c 81e94935
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,6 @@ import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.PowerManager;
import android.os.UserHandle;
import android.provider.Settings;
import android.provider.Settings.Global;
import android.provider.Settings.Secure;
......@@ -202,10 +201,10 @@ public class BatterySaverUtils {
}
private static void setBatterySaverConfirmationAcknowledged(Context context) {
Secure.putIntForUser(context.getContentResolver(),
Secure.LOW_POWER_WARNING_ACKNOWLEDGED, 1, UserHandle.USER_CURRENT);
Secure.putIntForUser(context.getContentResolver(),
Secure.EXTRA_LOW_POWER_WARNING_ACKNOWLEDGED, 1, UserHandle.USER_CURRENT);
Secure.putInt(context.getContentResolver(),
Secure.LOW_POWER_WARNING_ACKNOWLEDGED, 1);
Secure.putInt(context.getContentResolver(),
Secure.EXTRA_LOW_POWER_WARNING_ACKNOWLEDGED, 1);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment