I would like to build an app which allows employees to scan fingerprint with the support of Android app. Right now most fingerprint API (Touch ID or Android Imprint) only allows login to app. Is there any 3rd party API that allows usage of API to collect fingerprint and attach to my employee record, and verify when they scan finger? Thanks.
相关问题
- 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
No. In fact, the Android Compatibility Definition for Android 6.0 states in the Fingerprint section (7.3.10):
Therefore while you could write an app that uses fingerprint as a mechanism to authenticate the user, any registered fingerprint associated with the current user account could be used.
This would mean that if you want to differentiate each employee, they would need their own user account or device, rather than having a single instance of the app that works for multiple users.
You're right, Android M or Samsung or iPhone APIs only allow to verify current user against user of device.
With Android M or Samsung or iPhone APIs you can't get fingerprint template or image.
As @ianhanniballake the only solution is to create a user in Android for each employee. But each employee need to select is user and after, he could be authenticated.
There's some fingerprint scanners compatible with Android Platform and with SDK for Android. These SDKs allow to get fingerprint image or template. Scanners are plugged on USB port so you can't charge tablet and use fingerprint scanner simultaneous. For instance:
There's also some devices with integrated fingerprint scanner and with SDK to get fingerprint image or template.
To match fingerprint, some SDK have matcher but if you have lot of user you should use an AFIS solution.