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.

26 lines
631 B

plugins {
kotlin("multiplatform")
1 month ago
alias(libs.plugins.compose.compiler)
}
group = "com.example"
version = "1.0-SNAPSHOT"
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
// Expose it as api here, so other modules don't need to care about it
1 month ago
api(libs.compose.runtime)
implementation(libs.kotlinx.coroutines)
}
}
val commonTest by getting {
1 month ago
dependencies {
implementation(kotlin("test"))
implementation(libs.kotlinx.coroutines.test)
}
}
}
}