๐ฆ Android wrapper for FaceTec
.aar
SDK, prepared as a reusable module and automatically versioned with semantic-release.
This project encapsulates the FaceTec .aar
file as a library via Jitpack. It allows Android or React Native projects to use the SDK without needing to directly manipulate the .aar
file.
With the package built and working, in the your app/library add the following code snippet to android/build.gradle
:
// android/build.gradle
repositories {
// ...
maven { url 'https://jitpack.io' }
}
dependencies {
// ...
implementation 'com.github.azifydev:facetec-aar:{{version}}'
}
To finish, in your app, add the following maven
repository to android/build.gradle
and android/app/build.gradle
:
// android/build.gradle
buildscript {
// ...
repositories {
// ...
maven { url 'https://jitpack.io' }
}
}
// android/app/build.gradle
repositories {
// ...
maven { url 'https://jitpack.io' }
}