Skip to main content

Quickstart

The Android SDK is of the library is made available as a Maven package.

Installation

Add the Mobai maven repository to the project level build.gradle file

// build.gradle (Project)
allprojects {
repositories {
maven {
url "https://gitlab.com/api/v4/projects/36441060/packages/maven"
}
}
}

Add the Mobai Biometric Capture library as a dependency in the module level build.gradle file

// build.gradle (Module)
dependencies {
implementation 'bio.mobai:biometric:2.0.0'
}