> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encorekit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Install the SDK

> Add the Encore Android SDK to your project via Gradle.

## Overview

The Encore Android SDK is available on **Maven Central** — no additional repository configuration required.

***

## Install via Gradle

### Step 1: Add the Dependency

Add the SDK to your app-level `build.gradle.kts`:

```kotlin theme={null}
// app/build.gradle.kts
dependencies {
    implementation("com.encorekit:encore:1.+")
}
```

<Note>
  `mavenCentral()` is included by default in Android projects. No additional repository setup is needed.
</Note>

### Step 2: Sync and Verify

Sync your Gradle project, then verify the SDK is available:

```kotlin theme={null}
import com.encorekit.encore.Encore
```

**Installation complete!**

***

## Next Steps

Now that the SDK is installed, continue with the integration:

* **[Configure the SDK](./configure)** - Set up your API key and initialize Encore
* **[Identify Users](./user-management)** - Learn how to identify users for offer tracking
