jim
11/20/2020, 5:35 PMJohn O'Reilly
11/20/2020, 5:38 PMjim
11/20/2020, 5:41 PMJohn O'Reilly
11/20/2020, 5:48 PMitnoles
11/20/2020, 6:11 PMColton Idle
11/20/2020, 9:20 PMjim
11/20/2020, 9:31 PMColton Idle
11/21/2020, 5:50 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-alpha08) expects a minimum runtime version of 1.0.0-alpha08.
jim
11/21/2020, 5:59 PMLeland Richardson [G]
11/21/2020, 6:17 PMColton Idle
11/22/2020, 2:29 AMAlexjlockwood
11/22/2020, 11:41 PMColton Idle
11/22/2020, 11:43 PMAlexjlockwood
11/22/2020, 11:58 PMColton Idle
11/22/2020, 11:58 PMAlexjlockwood
11/23/2020, 12:38 AM./gradlew --stop
first. i think there was some caching going on behind the scenes that was causing the wrong deps to be used or something 🤷Colton Idle
11/23/2020, 1:59 AMkotlinOptions {
jvmTarget = '1.8'
useIR = true
}
buildFeatures {
compose true
viewBinding true
}
composeOptions {
kotlinCompilerVersion '1.4.20'
kotlinCompilerExtensionVersion '1.0.0-SNAPSHOT'
}
and
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.4.20"
implementation "org.jetbrains.kotlin:kotlin-reflect:1.4.20"
my root build.gradle
classpath 'com.android.tools.build:gradle:4.2.0-alpha16'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.20"
Anything look different from your set up?Alexjlockwood
11/23/2020, 3:36 AM~/.gradle/caches
that is screwing things upcb
11/23/2020, 1:07 PMColton Idle
11/23/2020, 2:12 PMLeland Richardson [G]
11/23/2020, 4:48 PMColton Idle
11/23/2020, 4:58 PMAlexjlockwood
11/23/2020, 7:34 PM@Preview
composables no longer work. i think it is because @Preview
was moved to a different package. i guess this will start working in the next android studio canary release though?Colton Idle
11/24/2020, 6:32 AM