theapache64
09/06/2021, 11:39 AMe: androidx.compose.compiler.plugins.kotlin.IncompatibleComposeRuntimeVersionException: You are using an outdated version of Compose Runtime that is not compatible with the version of the Compose Compiler plugin you have installed. The compose compiler plugin you are using (version 1.0.2) expects a minimum runtime version of 1.0.0.
Details in 🧵theapache64
09/06/2021, 11:41 AMcompose_version = '1.0.2'
kotlin_version = '1.5.21'
with AGP "com.android.tools.build:gradle:7.0.2"
Anyone know why am getting this? and how do i fix it? 🤔sindrenm
09/06/2021, 11:51 AMandroid.composeOptions.kotlinCompilerExtensionVersion
in your build.gradle[.kts] file?theapache64
09/06/2021, 11:54 AMtheapache64
09/06/2021, 12:01 PMandroidx.compose.*
dependencies to one of the UI modules fixed it. I think it happened because I had
buildFeatures {
compose true
}
but I didn’t add implementation androidx.compose.*
deps.sindrenm
09/06/2021, 1:20 PM