Allow 3 bio retries

pull/194/merge
M66B 3 years ago
parent fb8585a3de
commit 6ff973375e

@ -2040,6 +2040,8 @@ public class Helper {
final BiometricPrompt prompt = new BiometricPrompt(activity, executor,
new BiometricPrompt.AuthenticationCallback() {
private int fails = 0;
@Override
public void onAuthenticationError(final int errorCode, @NonNull final CharSequence errString) {
Log.w("Authenticate biometric error " + errorCode + ": " + errString);
@ -2069,6 +2071,7 @@ public class Helper {
@Override
public void onAuthenticationFailed() {
Log.w("Authenticate biometric failed");
if (++fails >= 3)
ApplicationEx.getMainHandler().post(cancelled);
}
});

Loading…
Cancel
Save