Trying to update to Kotlin 1.5.10 and Compose beta...
# compose
t
Trying to update to Kotlin 1.5.10 and Compose beta08, and I am getting a reference to beta07. I ran dependencies and see this:
Copy code
kotlin-extension - Configuration for Compose related kotlin compiler extension
\--- androidx.compose.compiler:compiler:1.0.0-beta07
But it is unclear to me what this is? Anybody know this one?
l
Try check in your
app/build.gradle
Copy code
composeOptions {
        kotlinCompilerExtensionVersion "1.0.0-beta07"
    }
t
Well, that is weird. I just tried again, and it worked. I did have this previously:
Copy code
composeOptions {
        kotlinCompilerExtensionVersion compose_version
        kotlinCompilerVersion kotlin_version
    }
c
Copy code
kotlinCompilerVersion
is no longer needed