chansek
10/28/2022, 7:58 AMorg.jetbrains.kotlin.backend.common.BackendException: Backend Internal error: Exception during IR lowering
Here is my build.gradle.kts of KMM module
android {
buildFeatures {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.2.0"
}
}
kotlin {
...
sourceSets {
...
val androidMain by getting {
dependencies {
implementation("androidx.compose.runtime:runtime:1.3.0-alpha02")
...
}
}
...
}
}