Hello everyone. With Gradle 6.0, build scripts are not able to reference
buildSrc/src/main/kotlin/MyClass.kt
anymore. Note that this classes don't have a package as they are in the root of the source set and therefore there was no need for import statements from the different modules
build.gradle.kts
. After the upgrade I'm getting
Unresolved reference: MyClass
everywhere in the project. Any ideas ?
m
msink
11/11/2019, 1:25 PM
For me it does not work in
settings.gradle.kts
, in
build.gradle.kts
it works.
r
robertoestivill
11/11/2019, 1:29 PM
That's correct. I forgot that I actually commented some parts of the