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

henrikhorbovyi

07/25/2020, 7:11 PM
I'm updating from
dev14
->
dev15
and I got the following error: Any ideas?
i

itnoles

07/25/2020, 7:28 PM
Update to Kotlin 1.4
h

henrikhorbovyi

07/25/2020, 8:02 PM
Thanks, @itnoles I was using 1.4 in my gradle but I didn't update Kotlin Plugin on the IDE
j

jim

07/26/2020, 1:13 AM
Probably you are missing the
-Xskip-prerelease-check
as per the "declaring dependencies" section of the release notes: https://developer.android.com/jetpack/androidx/releases/compose#declaring_dependencies
👍 1
m

Marcin Środa

07/27/2020, 8:55 AM
@jim is right, you've forget to add compiler option:
Copy code
freeCompilerArgs += "-Xskip-prerelease-check"
3 Views