Installation
The Android-ID Document Recognition SDK is provided in Android Library Project (AAR) format.
Download SDK
Download libidsdk.zip [102M]
Directory Structure
The SDK directory contains the following directories and files:
build.gradle
Gradle build file
libidsdk.aar
ID SDK AAR file
Add ID SDK to Android Project
Add the SDK folder to your Android project's root directory.
Open the
build.gradlefile corresponding to the new, or existing Android Studio project that you want to integrate. Typically, this is thebuild.gradlefile for theappmodule.Add the SDK to the
dependenciessection in yourbuild.gradlefile:
dependencies {
implementation project(path: ':libidsdk')
}Include the SDK in your
settings.gradlefile:
rootProject.name = "YourProjectName"
include ':app'
include ':libidsdk'Build your project

Last updated