Gabriel
10/26/2020, 7:45 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("com.github.skydoves:landscapist-glide:1.0.7")
implementation("androidx.navigation:navigation-compose:$COMPOSE_VERSION")
implementation("androidx.compose.runtime:runtime-livedata:$COMPOSE_VERSION")
implementation("androidx.compose.material:material:$COMPOSE_VERSION")
implementation("androidx.compose.ui:ui:$COMPOSE_VERSION")
implementation("androidx.ui:ui-tooling:$COMPOSE_VERSION")
and it's from a snapshot
maven("<https://androidx.dev/snapshots/builds/6924113/artifacts/repository>")
louiscad
10/26/2020, 7:48 PMGabriel
10/26/2020, 7:49 PMAfzal Najam
10/26/2020, 8:16 PM./gradlew app:dependencies
?Gabriel
10/26/2020, 9:18 PMAfzal Najam
10/26/2020, 9:19 PMGabriel
10/26/2020, 9:25 PM0.1.0-dev16
directlyGabriel
10/26/2020, 9:27 PMcom.github.skydoves:landscapist-glide:1.0.7
seems to want androidx.compose.runtime:runtime:1.0.0-alpha05
I don't know if that could be itAfzal Najam
10/26/2020, 9:35 PMimplementation("some:dependency") {
version {
strictly 'someVersion'
}
}
Gabriel
10/26/2020, 9:42 PMimplementation("androidx.compose.runtime:runtime:$COMPOSE_VERSION") {
version {
this.strictly(COMPOSE_VERSION)
}
}
Gabriel
10/26/2020, 9:42 PMGabriel
10/26/2020, 9:42 PMefemoney
10/28/2020, 5:42 PMGabriel
10/29/2020, 8:02 AM