How to save and compare 2 fingerprints on Android
Asked Answered
C

1

6

I would like to integrate fingerprint in the authentication process for my project and then save and compare this fingerprint.

I have tried integrate several pieces of code, but so far none have worked. How can I save and compare fingerprints in an Android app?

Correlative answered 5/8, 2020 at 2:55 Comment(2)
This link may help you camsunit.com/application/…Ita
Related: #35935229Malikamalin
H
1

This is not possible using the device's fingerprint sensor. By design, to prevent apps from obtaining the user's fingerprint data, there is no API that allows an app to access fingerprint data. There is also no API that allows different fingerprints to be distinguished, as they are all considered to be from the device user that is running the app.

If you need to save and compare fingerprints in an Android app, your only option would be to separately obtain an external fingerprint sensor that connects to the Android device, and use its SDK to read and store fingerprint data.

Harlot answered 6/8, 2020 at 4:47 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.