I'm updating from `dev14` -> `dev15` and I got th...
# compose
h
I'm updating from
dev14
->
dev15
and I got the following error: Any ideas?
i
Update to Kotlin 1.4
h
Thanks, @itnoles I was using 1.4 in my gradle but I didn't update Kotlin Plugin on the IDE
j
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
@jim is right, you've forget to add compiler option:
Copy code
freeCompilerArgs += "-Xskip-prerelease-check"