Is it doable to collect user fingerprint with android?

后端 未结 4 1666
野的像风
野的像风 2020-12-20 06:50

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

4条回答
  •  -上瘾入骨i
    2020-12-20 07:11

    I haven't tried this yet, but recent Android OS (Marshmallow) has ability to do that.

    "To authenticate users via fingerprint scan, get an instance of the new FingerprintManager class and call the authenticate() method. Your app must be running on a compatible device with a fingerprint sensor. You must implement the user interface for the fingerprint authentication flow on your app, and use the standard Android fingerprint icon in your UI. The Android fingerprint icon (c_fp_40px.png) is included in the Fingerprint Dialog sample. If you are developing multiple apps that use fingerprint authentication, note that each app must authenticate the user’s fingerprint independently. "

    https://developer.android.com/about/versions/marshmallow/android-6.0.html

    Two restrictions:

    1. Android 6.0 and higher
    2. Fingerprint sensor inside device

    Up to date market share of Android 6.0 you can find here:

    https://developer.android.com/about/dashboards/index.html

提交回复
热议问题