sdk: Add FINGERPRINT_WAKE_UNLOCK setting

Change-Id: I652afe3397e1b0f44877a4c24b491d0d8408502f
This commit is contained in:
althafvly
2022-06-29 16:25:08 +05:30
committed by Michael Bestas
parent 1c81f93835
commit 35ee5eb1e1

View File

@@ -2045,6 +2045,15 @@ public final class LineageSettings {
public static final Validator ENABLE_TASKBAR_VALIDATOR =
sBooleanValidator;
/**
* Whether to enable fingerprint wake-and-unlock.
*/
public static final String FINGERPRINT_WAKE_UNLOCK = "fingerprint_wake_unlock";
/** @hide */
public static final Validator FINGERPRINT_WAKE_UNLOCK_VALIDATOR =
sNonNegativeIntegerValidator;
/**
* I can haz more bukkits
* @hide
@@ -2310,6 +2319,8 @@ public final class LineageSettings {
CLICK_PARTIAL_SCREENSHOT_VALIDATOR);
VALIDATORS.put(ENABLE_TASKBAR,
ENABLE_TASKBAR_VALIDATOR);
VALIDATORS.put(FINGERPRINT_WAKE_UNLOCK,
FINGERPRINT_WAKE_UNLOCK_VALIDATOR);
VALIDATORS.put(__MAGICAL_TEST_PASSING_ENABLER,
__MAGICAL_TEST_PASSING_ENABLER_VALIDATOR);
};