Reputation: 220
eg If user's phone has got both faceID as well as fingerprint.
Currently Biometric prompt is selecting one user has setup first
Upvotes: 5
Views: 4007
Reputation: 984
This blog post, explains how the Biometric implementations distinguish between Strong vs Weak biometrics. It mentions that your code doesn't determine whether biometric is Strong or Weak -- rather the OEM implementation does. Nonetheless, you can decide whether your app always use Strong biometric authentication. And the way to do that is to pass in a CryptoObject
when you call authenticate
.
CryptoObject
, the system will choose for you.CryptoObect
to authenticate()
then the system will use the strong sensor for your app.Beyond this, you the developer doesn't decide which form factor is used to authenticate your users.
P.S. You may also find the following blog post useful.
Upvotes: 6