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 {
|
|
|
|
// __LATEST_COMPOSE_RELEASE_VERSION__
|
|
|
|
val composeVersion = System.getenv("COMPOSE_RELEASE_VERSION") ?: "0.4.0"
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath("org.jetbrains.compose:compose-gradle-plugin:$composeVersion")
|
|
|
|
// __KOTLIN_COMPOSE_VERSION__
|
|
|
|
classpath(kotlin("gradle-plugin", version = "1.5.10"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
}
|
|
|
|
}
|