You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
buildscript {
|
|
|
|
val composeVersion = System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.1.0-build63"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath("org.jetbrains.compose:compose-gradle-plugin:$composeVersion")
|
|
|
|
classpath("com.android.tools.build:gradle:4.0.1")
|
|
|
|
classpath(kotlin("gradle-plugin", version = "1.4.0"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
include(":common", ":android", ":desktop")
|