commit | bf5b361fa8356a244b4ed2900fdca1104ddaedc2 | [log] [tgz] |
---|---|---|
author | Ilya Matyukhin <ilyamaty@google.com> | Fri Feb 19 15:12:28 2021 -0800 |
committer | Ilya Matyukhin <ilyamaty@google.com> | Tue Feb 23 14:02:42 2021 -0800 |
tree | 2cebcb14107a0ccc4766c001b2efc381f8751e5b | |
parent | c6ad586abec1018da83643a81355d2d0ce9c1a6f [diff] |
Add REENROLL_REQUIRED to IFace Bug: 180723766 Test: m android.hardware.biometrics.face-update-api Change-Id: I4687828a9e1bcd42633b28f16656d99632b63520
diff --git a/biometrics/face/aidl/aidl_api/android.hardware.biometrics.face/current/android/hardware/biometrics/face/Error.aidl b/biometrics/face/aidl/aidl_api/android.hardware.biometrics.face/current/android/hardware/biometrics/face/Error.aidl index 6bbe787..7992f99 100644 --- a/biometrics/face/aidl/aidl_api/android.hardware.biometrics.face/current/android/hardware/biometrics/face/Error.aidl +++ b/biometrics/face/aidl/aidl_api/android.hardware.biometrics.face/current/android/hardware/biometrics/face/Error.aidl
@@ -40,4 +40,5 @@ CANCELED = 5, UNABLE_TO_REMOVE = 6, VENDOR = 8, + REENROLL_REQUIRED = 16, }
diff --git a/biometrics/face/aidl/android/hardware/biometrics/face/Error.aidl b/biometrics/face/aidl/android/hardware/biometrics/face/Error.aidl index 7230128..6f3264b 100644 --- a/biometrics/face/aidl/android/hardware/biometrics/face/Error.aidl +++ b/biometrics/face/aidl/android/hardware/biometrics/face/Error.aidl
@@ -87,5 +87,9 @@ * * LOCKOUT_PERMANENT = 9 */ -} + /** + * Authentication cannot be performed because re-enrollment is required. + */ + REENROLL_REQUIRED = 16, +}