项目作者: fajarca

项目描述 :
A sample project to explore biometric authentication on Android
高级语言: Kotlin
项目地址: git://github.com/fajarca/biometric-authentication.git
创建时间: 2020-05-04T14:20:12Z
项目社区:https://github.com/fajarca/biometric-authentication

开源协议:

下载


Biometric Authentication

On this simple project I explored how biometric authentication is implemented on Android.

Biometric authentication is one of the available method to protect sensitive information within our app. The biometric authentication helps us to utilize fingerprint recognition and face recognition sensor on the device (if any).

Integration

To integrate Biometric Authentication on our project the steps are simple. Firstly, we need to add the following line under the dependencies tag in build.gradle at the app level.

dependencies {
implementation ‘androidx.biometric:biometric:1.0.1’
}