Should i be worried at all about this warning I’m ...
# compiler
m
Should i be worried at all about this warning I’m getting when upgrading to kotlin 2.0.0 (we want to take advantage of the new compose compiler that comes with the 2.0.0 upgrade)?
Copy code
w: Kapt currently doesn't support language version 2.0+. Falling back to 1.9.
e
you can upgrade to Kotlin (compiler) 2.0, you just can't force the language version to 2.0 for kapt. which shouldn't generally be an issue since there aren't any significant language features in this release, so kapt and normal kotlinc just have effectively different but equivalent views of the your code
m
Thanks.