> For the complete documentation index, see [llms.txt](https://hinkal-team.gitbook.io/hinkal/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hinkal-team.gitbook.io/hinkal/hinkal-mobile-sdk/android/installation.md).

# Installation

Add the Hinkal Android SDK to your project.

### Requirements

* minSdk 21+
* ABIs: `arm64-v8a`, `x86_64`

### Gradle

The SDK is published to Maven Central as `io.hinkal:hinkal-android`.

#### build.gradle.kts

```kotlin
dependencies {
    implementation("io.hinkal:hinkal-android:0.1.0")
}
```

#### build.gradle (Groovy)

```groovy
dependencies {
    implementation 'io.hinkal:hinkal-android:0.1.0'
}
```

### Repository

Ensure Maven Central is in `settings.gradle.kts`:

```kotlin
dependencyResolutionManagement {
    repositories {
        google()
        mavenCentral()
    }
}
```

### Verifying installation

```kotlin
import io.hinkal.mobile.Mobile

val chains = Mobile.supportedChainsJSON()
```
