Gradle Source Code
Installation
Gradle Configuration
Add these lines to your android/build.gradle.
allprojects {
repositories {
google()
mavenCentral()
//Your maven should be like this
maven { url = uri("https://repo.combateafraude.com/android/release") }
maven { url = uri("https://raw.githubusercontent.com/iProov/android/master/maven/") }
maven { setUrl("https://maven.fpregistry.io/releases") }
maven { setUrl("https://jitpack.io") }
}
}Java 8 Compatibility
If Java 8 is not enabled, add support to your android/app/build.gradle:
android {
...
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}Adding SDK Dependency
Include the FaceLiveness SDK in your android/app/build.gradle dependencies:
See the current version for Android.
Last updated

