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
644 B
25 lines
644 B
4 years ago
|
buildscript {
|
||
|
repositories {
|
||
|
// TODO: remove after new build is published
|
||
|
mavenLocal()
|
||
|
google()
|
||
|
jcenter()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
// __LATEST_COMPOSE_RELEASE_VERSION__
|
||
|
classpath("org.jetbrains.compose:compose-gradle-plugin:0.3.0-build135")
|
||
|
classpath("com.android.tools.build:gradle:4.0.1")
|
||
|
classpath(kotlin("gradle-plugin", version = "1.4.21"))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
allprojects {
|
||
|
repositories {
|
||
|
google()
|
||
|
jcenter()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
}
|
||
|
}
|