When Upgrading to kotlin 1.9.0, lint has an issue...
# android
r
When Upgrading to kotlin 1.9.0, lint has an issue mistaken kotlin forEach for the java version. how does one resolve this
v
https://issuetracker.google.com/issues/185418482 The temporary solution is to add this to your `gradle.properties`:
Copy code
# Upgrade lint to a newer version to work around <https://issuetracker.google.com/issues/185418482>.
android.experimental.lint.version=8.1.0-rc01
👍 1
111 Views