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.

18 lines
512 B

4 years ago
buildscript {
4 years ago
val composeVersion = System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.1.0-dev97"
4 years ago
4 years ago
repositories {
google()
jcenter()
4 years ago
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
4 years ago
}
dependencies {
4 years ago
classpath("org.jetbrains.compose:compose-gradle-plugin:$composeVersion")
4 years ago
classpath("com.android.tools.build:gradle:4.0.1")
classpath(kotlin("gradle-plugin", version = "1.4.0"))
}
}
4 years ago
include(":common", ":android", ":desktop")