编程语言
首页 > 编程语言> > 使用Android的指纹扫描仪进行应用程序

使用Android的指纹扫描仪进行应用程序

作者:互联网

我需要创建一个扫描指纹并对其进行身份验证的应用程序.我在Android网站上找不到任何关于指纹权限的信息.
是否可以将手机的指纹扫描仪用于常规应用?如果是这样,它可以存储的指纹数量限制是多少(我更喜欢将它们存储在手机本身上)

谢谢

解决方法:

指纹扫描仪不是Android中的一项功能(现在可在Android M上使用).

所以每个公司如三星,摩托罗拉,HTC创建的都是自己的API和SDK来访问指纹传感器.

例如,三星提供SDK http://developer.samsung.com/galaxy#pass

Pass SDK allows you to use fingerprint recognition features in your
application. With Pass SDK, you can provide reinforced security, since
you can identify whether the current user actually is the authentic
owner of the device.

如果您要在应用中注册多个用户并检查用户,则无法使用Samsung设备.您只能检查设备的所有者.

我不知道其他公司的SDK.

UPDATE

Android M有新的FingerPrint API:
https://developer.android.com/about/versions/marshmallow/android-6.0.html#fingerprint-authentication

标签:android,fingerprint
来源: https://codeday.me/bug/20190926/1819137.html