Installation

Modules

Authenteq SDK consist in 4 different modules:

  • Core (required)

  • Live ID document scanner (optional)

  • Live ID document scanner database (optional)

  • Live Proof of Address scanner (optional)

Live ID document scanner will be activated only on device with min 2GB of RAM

Gradle integration

  • In your build.gradle you first need to add the Authenteq Sdk maven repository to your repositories list:

repositories {
    maven {
        url 'https://repo.app.authenteq.com/repository/maven-hosted'
    }
}
  • Set min Android SDK to level 21 (Android 5.0) in build.gradle

minSdkVersion 21
  • Authenteq Sdk contains Java 8 bytecode. Enable desugaring by adding the following lines to build.gradle

  • Once done, add Core module as a dependency to your application:

  • To enable Live ID document scanner add the following dependency:

  • Optionally add a dependency to Live ID document scanner database (otherwise it will be downloaded at runtime):

  • Optionally, to enable live document detection on "Proof of Address", add the following dependency:

  • Adjust backup settings in AndroidManifest.xml by changing the allowBackup attribute to true

or disable it by adding this attribute in application tag

this also require to add the following attribute in manifest tag

Proguard

Proguard is used for obfuscation.

Last updated

Was this helpful?