-1

I'm working on project which require fingerprint authentication. Which I've achieved already , now I'm curious about can I identify a mobile's users based on their fingerprint ?

If yes then please guide me with your wisdom , thank you.

I'm using this sample code 'https://github.com/googlesamples/android-FingerprintDialog/'.

Vrushi Patel
  • 2,361
  • 1
  • 17
  • 30

2 Answers2

1

That's not possible. There's no such method in Fingerprint API (deprecated) and the recent BiometricPrompt API to identify the scanned prints, they can only acknowledge about the validation of the scanned fingerprints (i-e valid or invalid) as per Google Compatibility Definition for Android vendors.

Qasim
  • 5,181
  • 4
  • 30
  • 51
0

As of now there is no such provision to identify user directly if you use any either of Fingerprint API or BiometricPrompt API. API allows callback to authenticate user through fingerprint or other supported biometrics validation methods, but doesn't have option to identify user uniquely.

However if you are doing validation using external validation devices and their supported SDK, then you can map individual fingerprint with their fingerprint data allowing you to create authentication mechanism for individual user.

karan
  • 8,637
  • 3
  • 41
  • 78