Gabriel
10/24/2020, 4:29 PMe: 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.0-alpha07) expects a minimum runtime version of 1.0.0-alpha07. The version of the runtime on the classpath currently is 0.1.0-dev16.
my versions are all the same
const val COMPOSE_VERSION = "1.0.0-SNAPSHOT"
implementation("androidx.navigation:navigation-compose:$COMPOSE_VERSION")
implementation("androidx.compose.runtime:runtime-livedata:$COMPOSE_VERSION")
implementation("androidx.compose.runtime:runtime:$COMPOSE_VERSION")
implementation("androidx.compose.material:material:$COMPOSE_VERSION")
implementation("androidx.compose.ui:ui:$COMPOSE_VERSION")
implementation("androidx.compose.compiler:compiler:$COMPOSE_VERSION")
implementation("androidx.ui:ui-tooling:$COMPOSE_VERSION")
and it's from a snapshot
maven("<https://androidx.dev/snapshots/builds/6924113/artifacts/repository>")
Adam Powell
10/24/2020, 4:35 PMcomposeOptions {}
block is specifying the right kotlinCompilerExtensionVersion
Adam Powell
10/24/2020, 4:35 PMAdam Powell
10/24/2020, 4:35 PMGabriel
10/24/2020, 4:39 PMcomposeOptions {
kotlinCompilerExtensionVersion = COMPOSE_VERSION
kotlinCompilerVersion = KOTLIN_VERSION
}
it's using the same constant as the depsAdam Powell
10/24/2020, 4:40 PMGabriel
10/24/2020, 4:48 PM1.0.0-alpha05