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

# Android installation

<Note>
  If you're looking for information on how to integrate the SDK, check out our

  [Universal Checkout](/checkout/overview) integration guide.
</Note>

Add the following to your `app/build.gradle` file:

```kotlin KOTLIN theme={"dark"}
repositories {
  mavenCentral()
}

dependencies {
  implementation 'io.primer:android:latest.version'
}
```

It is highly recommended adding the following settings to your `app/build.gradle` file:

```kotlin KOTLIN theme={"dark"}
android {
    kotlinOptions {
        freeCompilerArgs += '-Xjvm-default=all'
    }
}
```
