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.
 
 
 
 

20 lines
720 B

pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
plugins {
val kotlinGeneration = extra["kotlin.generation"]
kotlin("multiplatform").version(extra["kotlin.version.$kotlinGeneration"] as String)
kotlin("android").version(extra["kotlin.version.$kotlinGeneration"] as String)
id("com.android.application").version(extra["agp.version"] as String)
id("com.android.library").version(extra["agp.version"] as String)
id("org.jetbrains.compose").version(extra["compose.wasm.version.$kotlinGeneration"] as String)
}
}
rootProject.name = "compose-jetsnack"
include(":common", ":android", ":desktop", ":web")