> For the complete documentation index, see [llms.txt](https://docs.recognito.vision/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.recognito.vision/face-recognition-sdk/integration-guide/android/installation.md).

# Installation

The Android-FaceSDK is provided in **Android Library Project (AAR)** format.

## Download SDK

[**libfacesdk\_core.zip \[33M\]**](https://www.dropbox.com/scl/fi/6udmto3acu8mt7y4x66y9/libfacesdk_core.zip?rlkey=w7gnhvxz8njcvpnssb59a5u60\&st=xsnzpbx1\&dl=0)

[**libfacesdk\_pro.zip \[46M\]**](https://www.dropbox.com/scl/fi/m02ykp7ilfevowd7hv6m7/libfacesdk_pro.zip?rlkey=632d06uqpc5s4fhi6cvka9c2a\&st=6vkiadun\&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>facesdk.aar</td><td>FaceSDK AAR file</td></tr></tbody></table>

## Add FaceSDK 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: ':libfacesdk')
}
```

{% endcode %}

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

{% code overflow="wrap" %}

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

{% endcode %}

* Build your project

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


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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/face-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.
