How to save and compare 2 fingerprints on Android

后端 未结 1 1204
故里飘歌
故里飘歌 2021-01-23 15:43

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 co

相关标签:
1条回答
  • 2021-01-23 16:09

    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.

    0 讨论(0)
提交回复
热议问题