Skip to main content

Adding the dependency

In the build.gradle file of the Gradle module where you want to declare the dependency on AutomatID (typically at path app/build.gradle), be sure to define the following repositories:

repositories {
mavenCentral()
maven {
url = "https://automatid-artifacts.s3.amazonaws.com/maven/"
}
}

Then, add the dependency on AutomatID:

implementation("com.automatid:automatid:<VERSION>")

You can find the latest version number and the changelog in the Changelog page.

In case your app uses R8, Proguard or DexGuard for code obfuscation and/or optimization, AutomatID automatically provides a configuration file to ensure its correct behavior at runtime. No further actions are required. AutomatID is fully compatible with R8 running in full mode.