Is it doable to collect user fingerprint with android? Our backend system has a fingerprint database. We'd like to match the fingerprints collected against database to see if there is a match.
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
I haven't tried this yet, but recent Android OS (Marshmallow) has ability to do that.
https://developer.android.com/about/versions/marshmallow/android-6.0.html
Two restrictions:
Up to date market share of Android 6.0 you can find here:
https://developer.android.com/about/dashboards/index.html
If by "collect user fingerprint" you mean getting an image of the fingerprint in some form, then no, you can't.
Android's fingerprint API essentially works like this:
The user enrolls a fingerprint in the Android Settings app.
Your app creates a cryptographic key that it associates with the user, and a
CryptoObject
based on that key, and starts a fingerprint authentication.If the fingerprint read by the sensor matches any of the enrolled fingerprints, the authentication is successful and the
CryptoObject
can be used to perform a cryptographic operation (such as encrypting/decrypting some data).At no point is the actual fingerprint available to your app, to any other app, or even to the OS.
From Google's fingerprint implementation guidelines to manufacturers: