Added change which enables the auto confirm feature flag to default to

true.

This change aims at making the auto confirm feature flag default to true. This is in line with release team latest guidance who
recommended to set it to true.

Bug: b/279974105
Test: Tested by building and flashing on local and checking if the
changes are available or not

Change-Id: Ic97e01319c1eff72c5d3972e064e2d8daa9cf642
This commit is contained in:
Bhavuk Jain
2023-04-28 15:43:49 +00:00
parent 1aaa44d37a
commit 12643c72b2

View File

@@ -731,7 +731,7 @@ public class LockPatternUtils {
return DeviceConfig.getBoolean(
DeviceConfig.NAMESPACE_AUTO_PIN_CONFIRMATION,
FLAG_ENABLE_AUTO_PIN_CONFIRMATION,
/* defaultValue= */ false);
/* defaultValue= */ true);
}
/** Returns if the given quality maps to an alphabetic password */