# Installation

The Android-ID Document Recognition SDK is provided in **Android Library Project (AAR)** format.

## Download SDK

Download [**libidsdk.zip \[102M\]**](https://www.dropbox.com/scl/fi/45tedqdodio6ygbw6jq0v/libidsdk.zip?rlkey=6ln9mvs0gtm7dxo10tus60tr7\&st=1reqor1q\&dl=0)

## Directory Structure

The SDK directory contains the following directories and files:

<table data-header-hidden><thead><tr><th width="152"></th><th></th></tr></thead><tbody><tr><td>build.gradle</td><td>Gradle build file</td></tr><tr><td>libidsdk.aar</td><td>ID SDK AAR file</td></tr></tbody></table>

## Add ID SDK to Android Project <a href="#adding-the-android-sdk" id="adding-the-android-sdk"></a>

* 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:

{% code overflow="wrap" %}

```gradle
dependencies {
    implementation project(path: ':libidsdk')
}
```

{% endcode %}

* Include the SDK in your `settings.gradle` file:

{% code overflow="wrap" %}

```gradle
rootProject.name = "YourProjectName"
include ':app'
include ':libidsdk'
```

{% endcode %}

* Build your project

<figure><img src="/files/tmxCpA55EZQTuCRKWJSC" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.recognito.vision/id-document-recognition-sdk/integration-guide/android/installation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
