Skip to content

Biometric authentication

namnh-0652 edited this page May 23, 2023 · 5 revisions

Features

// TODO

Installation

Prerequisites

  • Android 23+

Steps

From project build.gradle (or settings.gradle), add Jitpack maven

repositories {
    maven { url 'https://jitpack.io' }
}

Add these dependencies to your app/build.gradle

dependencies {
    implementation "com.github.sun-asterisk.tech-standard-android-auth:core:${latest_version}"
    implementation "com.github.sun-asterisk.tech-standard-android-auth:biometricauth:${latest_version}"
    implementation "com.github.sun-asterisk.tech-standard-android-auth:credentialsauth:${latest_version}" // Optional, you can use your own credentials authentication method.
}

// TODO