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

Last updated
rootProject.name = "YourProjectName"
include ':app'
include ':libidsdk'