Fixed
Status Update
Comments
kc...@google.com <kc...@google.com> #2
kc...@google.com <kc...@google.com> #3
Feel free to re-open if I'm misunderstanding
ap...@google.com <ap...@google.com> #5
Project: platform/frameworks/support
Branch: androidx-master-dev
commit 8723aede2aca5a61776d225b3535d3afcddee615
Author: Aurimas Liutikas <aurimas@google.com>
Date: Wed Jul 17 15:42:59 2019
Use the correct constants in BiometricPrompt @IntDef
BiometricError was referring to constants that are hidden.
Refer to them via BiometricPrompt which is actually public.
Bug: 137788194
Test: ./gradlew assembleDebug still works
Change-Id: I5cd5ac79c80a5980bc2f6dc99407881ba3d3c37e
M biometric/src/main/java/androidx/biometric/BiometricPrompt.java
https://android-review.googlesource.com/1056203
https://goto.google.com/android-sha1/8723aede2aca5a61776d225b3535d3afcddee615
Branch: androidx-master-dev
commit 8723aede2aca5a61776d225b3535d3afcddee615
Author: Aurimas Liutikas <aurimas@google.com>
Date: Wed Jul 17 15:42:59 2019
Use the correct constants in BiometricPrompt @IntDef
BiometricError was referring to constants that are hidden.
Refer to them via BiometricPrompt which is actually public.
Bug: 137788194
Test: ./gradlew assembleDebug still works
Change-Id: I5cd5ac79c80a5980bc2f6dc99407881ba3d3c37e
M biometric/src/main/java/androidx/biometric/BiometricPrompt.java
Description
public void onAuthenticationError(@BiometricError int errorCode, @NonNull CharSequence errString) {}
@BiometricError is an @IntDef that has constants from androidx.biometric.BiometricConstants and all of them are @hide. Developers cannot access them.
Why are these constants private?