mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
16 lines
409 B
Kotlin
16 lines
409 B
Kotlin
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven("https://packages.jetbrains.team/maven/p/ui/dev")
|
|
}
|
|
|
|
dependencies {
|
|
classpath("org.jetbrains.compose:compose-gradle-plugin:0.1.0-build58")
|
|
classpath("com.android.tools.build:gradle:4.0.1")
|
|
classpath(kotlin("gradle-plugin", version = "1.4.0"))
|
|
}
|
|
}
|
|
|
|
include(":common", ":android", ":desktop")
|