I still have this problem, I guess this is some bu...
# announcements
d
I still have this problem, I guess this is some bug in kotlin gradle plugin (or IDE plugin?) where it says every time:
Copy code
Outdated Kotlin Runtime
			Your version of Kotlin runtime in 'kotlin-runtime-1.0.2' library is 1.0.2, while plugin version is 1.1.2-release-Studio2.3-1.
while my project doesn't have that dependency (I checked all of them using
./gradlew androidDependencies
). There's one artifact which depends on
1.0.2
(an old version of
spek
I have to use atm), but I set up gradle's resolution strategy so that it doesn't use
1.0.2
, only
1.1.x
and
dependencies
task clearly indicates that
1.1.2
is being picked up in the end. Project compiles fine, I use all the new features while IDE warns me everytime and sometimes fails to see
takeIf
,
also
, etc, highlighting them as errors, but compiles fine....