LiveKit docs › Getting started › Installation

---

# Android Components

> LiveKit Android Components are the easiest way to build realtime audio/video apps with Jetpack Compose on Android.

## Installation

**Groovy**:

In your app's `build.gradle` file:

```groovy
dependencies {
    implementation "io.livekit:livekit-android-compose-components:<current version>"
}

```

---

**Kotlin**:

In your app's `build.gradle.kts` file:

```kotlin

dependencies {
    implementation("io.livekit:livekit-android-compose-components:<current version>")
}

```

See our [releases page](https://github.com/livekit/components-android/releases) for information on the latest version of the SDK.

You'll also need JitPack as one of your repositories.

**Groovy**:

In your root project's `settings.gradle` file:

```groovy
dependencyResolutionManagement {
    repositories {
        google()
        mavenCentral()

        maven { url 'https://jitpack.io' }
    }
}

```

---

**Kotlin**:

In your root project's `settings.gradle.kts` file:

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

        maven { url = URI("https://jitpack.io") }
    }
}

```

---

This document was rendered at 2026-06-07T11:32:03.937Z.
For the latest version of this document, see [https://docs.livekit.io/reference/components/android.md](https://docs.livekit.io/reference/components/android.md).

To explore all LiveKit documentation, see [llms.txt](https://docs.livekit.io/llms.txt).