Hi,
How is registerBiometric() supposed to be utilised?
what is this fragmentActivity?
Do i have to set up a UI that will capture biometric information?,
also in the next stage of registration, registerUser() expects params["authType"] = "{authType}" as one of the params , which i thing it is the result of "if you provide multiple authentication type (biometric/faceID , password/pattern) please declare it as below code for each authType : NORMAL = 2, BIOMETRIC = 3, PASSWORD_PATTERN = 4"
how is this supposed to be registerd in Biometric registration stage?
Hello EmmanuelKipngetich,
I had the same difficulty. After some research, I proceeded as follows to solve the problem:
1. Modify the declaration of MainActivity as follows: class MainActivity : FragmentActivity() { ... }
2. When executing the Bsa request , you can find the FragmentActivity like that
val context = LocalContext.current
val fragmentActivy = context as FragmentActivity
That work for me,
I hope this works for you,
BR