Add AcqiredInfo.RETRYING_CAPTURE to IFingerprint

Bug: 183154058
Test: make -j android.hardware.biometrics.fingerprint-update-api
Change-Id: I76c9f157975af5c354136e0ec9d1b04dd1098b2a
This commit is contained in:
Kevin Chyn
2021-03-25 12:04:11 -07:00
parent a42f20168d
commit 4e9f2f79cb
2 changed files with 8 additions and 1 deletions

View File

@@ -45,4 +45,5 @@ enum AcquiredInfo {
TOO_DARK = 8,
TOO_BRIGHT = 9,
IMMOBILE = 10,
RETRYING_CAPTURE = 11,
}

View File

@@ -82,5 +82,11 @@ enum AcquiredInfo {
* same finger can help against false rejections.
*/
IMMOBILE,
}
/**
* This message may be sent to notify the framework that an additional image capture is taking
* place. Multiple RETRYING_CAPTURE may be sent before an ACQUIRED_GOOD message is sent.
* However, RETRYING_CAPTURE must not be sent after ACQUIRED_GOOD is sent.
*/
RETRYING_CAPTURE,
}