commit | 61d38188a1538b14621f0bbb0f722a9ad614f34c | [log] [tgz] |
---|---|---|
author | Ilya Matyukhin <ilyamaty@google.com> | Wed Feb 24 00:12:21 2021 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Wed Feb 24 00:12:21 2021 +0000 |
tree | d8c2335121b4e62c094c6ed1543c2886bd0763d7 | |
parent | 12cfbb9235bea3055a577f5281f78157c60a7782 [diff] | |
parent | bf5b361fa8356a244b4ed2900fdca1104ddaedc2 [diff] |
Merge "Add REENROLL_REQUIRED to IFace" into sc-dev
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, +}