Merge "Change default value for face metrics" am: 1d15e1c13d

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/12462721

Change-Id: I54b64035f54292699a64bdb638e2ca6368a3c731
This commit is contained in:
TreeHugger Robot
2020-09-09 02:22:34 +00:00
committed by Automerger Merge Worker

View File

@@ -3005,10 +3005,10 @@ public class StatsPullAtomService extends SystemService {
Settings.Secure.FACE_UNLOCK_KEYGUARD_ENABLED, 1, userId);
int unlockDismissesKeyguard = Settings.Secure.getIntForUser(
mContext.getContentResolver(),
Settings.Secure.FACE_UNLOCK_DISMISSES_KEYGUARD, 0, userId);
Settings.Secure.FACE_UNLOCK_DISMISSES_KEYGUARD, 1, userId);
int unlockAttentionRequired = Settings.Secure.getIntForUser(
mContext.getContentResolver(),
Settings.Secure.FACE_UNLOCK_ATTENTION_REQUIRED, 1, userId);
Settings.Secure.FACE_UNLOCK_ATTENTION_REQUIRED, 0, userId);
int unlockAppEnabled = Settings.Secure.getIntForUser(
mContext.getContentResolver(),
Settings.Secure.FACE_UNLOCK_APP_ENABLED, 1, userId);