By adding compose in KMM's androidMain dependency,...
# multiplatform
c
By adding compose in KMM's androidMain dependency, I should be able to use @Composable in the KMM module right? Why do I get below error instead:
Copy code
org.jetbrains.kotlin.backend.common.BackendException: Backend Internal error: Exception during IR lowering
Here is my build.gradle.kts of KMM module
Copy code
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")
       ...
         }
      }
  ...
}
}