Open patrikwork1 opened 5 years ago
Is this still occuring?
Any Updates ? It is still occurring for me.
It is still occurring for me too.
Has anyone found a solution? I'm getting the same problem. The app crashes only on iOS when calling createSignature.
I had the same error because I forgot to add the permissions to the info.plist
<key>NSFaceIDUsageDescription</key>
<string>Text explains why you need the FaceID</string>
Hope this helps you!
I had this error despite having set NSFaceIDUsageDescription
. Turned out I was passing an empty string as the promptMessage
which is allowed by the TypeScript types, but causes iOS to crash.
biometrics.simplePrompt({
promptMessage: "" // <-- this was the problem
});
Hey,
I am getting a crash on iOS with an error Thread: signal SIGABRT. Basically a thread that runs the package crashes. My app works on android. I am running the package on react-native 0.59.8.
Here is my stack trace.
Would appreciate some help with this.