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.
25 lines
634 B
25 lines
634 B
4 years ago
|
buildscript {
|
||
|
// __LATEST_COMPOSE_RELEASE_VERSION__
|
||
|
val composeVersion = System.getenv("COMPOSE_RELEASE_VERSION") ?: "0.3.0-build135"
|
||
|
|
||
|
repositories {
|
||
|
google()
|
||
|
jcenter()
|
||
|
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.4.21"))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
allprojects {
|
||
|
repositories {
|
||
|
google()
|
||
|
jcenter()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
}
|
||
|
}
|