Merge "Add TOO_DARK and TOO_BRIGHT to AcquiredInfo"

This commit is contained in:
Kevin Chyn
2021-01-26 22:36:36 +00:00
committed by Android (Google) Code Review
2 changed files with 14 additions and 0 deletions

View File

@@ -27,4 +27,6 @@ enum AcquiredInfo {
TOO_FAST = 5,
VENDOR = 6,
START = 7,
TOO_DARK = 8,
TOO_BRIGHT = 9,
}

View File

@@ -63,5 +63,17 @@ enum AcquiredInfo {
* latency based on the time between the last START message and the onAuthenticated callback.
*/
START,
/**
* For sensors that require illumination, such as optical under-display fingerprint sensors,
* the image was too dark to be used for matching.
*/
TOO_DARK,
/**
* For sensors that require illumination, such as optical under-display fingerprint sensors,
* the image was too bright to be used for matching.
*/
TOO_BRIGHT,
}