We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Skip or provide an option to skip confirmation after Face unlock. The feature is controlled by setConfirmationRequired in the unlock prompt:
https://developer.android.com/reference/androidx/biometric/BiometricPrompt.PromptInfo.Builder#setConfirmationRequired(boolean)
The confirmation after successful face unlock is unnecessary and this would speed up the access.
The text was updated successfully, but these errors were encountered:
This can be implemented here:
2fas-android/feature/security/src/main/java/com/twofasapp/feature/security/ui/biometric/BiometricDialog.kt
Line 43 in 224fdbf
By adding .setConfirmationRequired(false) before calling build()
.setConfirmationRequired(false)
build()
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Feature description
Skip or provide an option to skip confirmation after Face unlock. The feature is controlled by setConfirmationRequired in the unlock prompt:
https://developer.android.com/reference/androidx/biometric/BiometricPrompt.PromptInfo.Builder#setConfirmationRequired(boolean)
Motivation
The confirmation after successful face unlock is unnecessary and this would speed up the access.
Acknowledgements
The text was updated successfully, but these errors were encountered: