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

> Install the Privy Android SDK and add embedded wallet support to your Android application.

# Installation

## Requirements

* Android API 28+ (Android 9.0 Pie or newer)
* Kotlin 2.1.0+

## Installation

The Privy Android SDK is available on Maven Central.

1. Include the `mavenCentral()` repository in your gradle files:

```kotlin theme={"system"}
repositories {
    google()
    mavenCentral()
}
```

2. Add the latest Privy SDK dependency to your app's `build.gradle` file:

```kotlin theme={"system"}
dependencies {
  // Privy Core
  implementation("io.privy:privy-core:X.Y.Z") // Replace with the latest version

  // other dependencies
}
```

The latest version can be found [here](https://mvnrepository.com/artifact/io.privy/privy-core).
