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 {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
// __LATEST_COMPOSE_RELEASE_VERSION__
|
|
|
|
classpath("org.jetbrains.compose:compose-gradle-plugin:1.0.0-alpha1")
|
|
|
|
classpath("com.android.tools.build:gradle:7.0.0")
|
|
|
|
// __KOTLIN_COMPOSE_VERSION__
|
|
|
|
classpath(kotlin("gradle-plugin", version = "1.5.21"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
|
|
}
|
|
|
|
}
|