Installation
Quick start guide for installing Compose Unstyled.
Add Maven Central
We distribute Compose Unstyled via Maven Central. Maven Central is the most popular repository for Kotlin packages and it should be included in your list of repositories out of the box.
To make sure you have it, check your settings.gradle.kts
:
// settings.gradle.kts
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}
Add the Gradle dependency
For Android apps:
// app/build.gradle.kts
dependencies {
implementation("com.composables:core:1.39.0")
}
For Compose Multiplatform apps:
// app/build.gradle.kts
kotlin {
sourceSets {
commonMain.dependencies {
implementation("com.composables:core:1.39.0")
}
}
}