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

Colton Idle

09/29/2020, 5:52 PM
I haven't been able to add compose to my existing project for some time now because of kotlin reflect issues (that using moshi brings up) and some people recommended that I wait for 1.4.20 of kotlin. Since the 1.4.20 eap came out today I tried it. The app would crash at runtime due to a kotlin reflect issue with this
Copy code
composeOptions {
    kotlinCompilerVersion '1.4.10'
    kotlinCompilerExtensionVersion '1.0.0-alpha03'
}
but now I updated to
Copy code
composeOptions {
    kotlinCompilerVersion '1.4.20-M1'
    kotlinCompilerExtensionVersion '1.0.0-alpha03'
}
and the app won't even compile. stack trace attached. Is this a known issue by chance?
a

Adam Powell

09/29/2020, 6:30 PM
cc @jim @Leland Richardson [G]
c

Colton Idle

09/29/2020, 7:02 PM
@jim thanks for confirming. I only rushed to update because of my kotlin reflection issue and so I was hoping 1.4.20 would fix it 😃 I will wait until there is declared support for compose and kotlin 1.4.20
2 Views