https://kotlinlang.org logo
#compose
Title
# compose
j

juliocbcotta

07/19/2022, 12:37 PM
we still can't use kotlin 1.7.10 with compose, right ?Do we need a new release of the compiler?
👍 2
j

Juan Carlos Pazos

07/19/2022, 9:51 PM
Yes we can. Add this in gradle:
Copy code
composeOptions {
    kotlinCompilerExtensionVersion = "1.2.0"
}
and then you can move to 1.7.0
Copy code
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
c

Colton Idle

07/20/2022, 1:26 AM
@Juan Carlos Pazos I think the OP is asking about 1.7.10 not 1.7.0
j

Juan Carlos Pazos

07/20/2022, 1:47 AM
Indeed, I did not notice .10
a

Ale Stamato

07/20/2022, 10:14 PM
j

juliocbcotta

07/21/2022, 9:50 AM
Uhuuuuu
Thanks folks
8 Views