Yes, it's possible to use the Fingerprint SDK for Android as an .aar
file, although we strongly recommend integrating the SDK via the official package repositories (such as jitpack.io and Maven) for easier management and updates.
Steps to Use the SDK as an .aar
file:
-
Fingerprint Pro SDK
Download the latest.aar
from Fingerprint Pro SDK for Android. -
Fingerprint OSS SDK
Download the latest.aar
from FingerprintJS OSS SDK for Android. -
Add
.aar
Files to Your Project
Save both.aar
files in your project directory, for example, inapp/libs
.
Update Your build.gradle
File
Include the following snippet in your build.gradle
file to load the .aar
files:
dependencies {
...
implementation fileTree(dir: "libs", include: ["*.aar"])
...
}
For the best experience we still recommend using the package repositories where possible.
Comments
0 comments
Article is closed for comments.