how to store fingerprint data along with username, image, email etc in database in android app

前端 未结 2 1646
一向
一向 2021-01-14 09:06

how to store fingerprint data along with username, image, email etc in database in android app. I read out many links but it is not helpful. they are

  1. How t

2条回答
  •  说谎
    说谎 (楼主)
    2021-01-14 10:08

    You cannot save a fingerprint image or template. It is stated by Android in the Fingerprint Section.

    The Fingerprint data is stored by android system in the phone at a secure location which is not accessible. You can write an app that gets and stores fingerprint to authenticate the user. You can go through this sample that demonstrates to use registered fingerprints to authenticate the user in your app.

    https://github.com/googlesamples/android-FingerprintDialog

提交回复
热议问题