BiometricPromptCompat
BiometricPromptCompat copied to clipboard
A Thrid-party BiometricPrompt compat library.
Do we have it?
To replicate: 1) Show dialog, but hit cancel. 2) Show dialog again (on a device that needs compat, like API27 emulator), will see the cancelled error from the previous invocation....
I think it's better to cancel Biometric dialog when **onAuthenticationError** method called. e.g:- when user try more than 5 wrong fingerprint, an error occured **Too many attempts, Fingerprint Sensor disabled**....
After click on **USE PASSWORD** Biometric dialog disappears and show **you requested password** Toast but accept fingerprint at the same time. Bug reproduce steps : - 1- click on **USE...
I should be able to use the library on a project with android support level set to 16. The check for supported devices should be chosen by us.
I'm getting this error: ``` 2018-06-27 16:03:38.323 27998-27998/com.mypossibleself.app E/WindowManager: android.view.WindowLeaked: Activity com.example.SecurityEntryActivity has leaked window DecorView@1635e7a[Security] that was originally added here at android.view.ViewRootImpl.(ViewRootImpl.java:572) at android.view.WindowManagerGlobal.addView(WindowManagerGlobal.java:331) at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:97) at android.app.Dialog.show(Dialog.java:419) at...
`Dialog` cannot keep its state after rotating screen. Most of time, we use `DialogFragment` to solve this problem. But it will break original-like API style (Need developers to add `Fragment`...