Hello,
I tried fingerprint library from https://www.b4x.com/android/forum/threads/fingerprint-authentication.72500/ with real device on Oreo 8.0.
Changed a code for sub Auth_Complete to be like this
If scan succeded, the app worked OK, message "You have been authenticated!!!" appeared, but if scan failed, fingerprint cancel and the error message never called.
Any idea why it didn't work as expected?
I tried fingerprint library from https://www.b4x.com/android/forum/threads/fingerprint-authentication.72500/ with real device on Oreo 8.0.
Changed a code for sub Auth_Complete to be like this
B4X:
Sub Auth_Complete (Success As Boolean, ErrorMessage As String)
If Success Then
ToastMessageShow("You have been authenticated!!!", True)
Else
fingerprint.Cancel
ToastMessageShow($"Error: ${ErrorMessage}"$, True)
Log(ErrorMessage)
End If
End Sub
If scan succeded, the app worked OK, message "You have been authenticated!!!" appeared, but if scan failed, fingerprint cancel and the error message never called.
Any idea why it didn't work as expected?