chore: global opt-in "androidx.compose.ui.ExperimentalComposeUiApi"

This commit is contained in:
2023-11-17 20:22:00 +08:00
parent 848b38711a
commit ae13d4a575
3 changed files with 6 additions and 4 deletions

View File

@@ -21,6 +21,11 @@ kotlin {
}
jvmToolchain(17)
sourceSets {
all {
languageSettings {
optIn("androidx.compose.ui.ExperimentalComposeUiApi")
}
}
val commonMain by getting {
dependencies {
implementation(compose.runtime)