Hi mates, I'm making a module in my multiplatform ...
# android
y
Hi mates, I'm making a module in my multiplatform library, and now I am trying to create this module with 
build.gradle.kts
. Here is how my build file and
buildSrc
looks like, everything builds OK, but I have highlighting issues. Maybe the problem is my runtime classpath contains the dependency while compile classpath doesn't. So does anyone know how to inspect this?
There is
plugins
helper
j
You can’t use plugins class so
If you run gradlew build you will see an error about that
y
@Javier I use it everywhere in project, why?
j
Because how plugins block works
j
You are using apply plugin or something so
It is strange it works
y
I can't use imports inside the block, but this class is in root package, so there is no problem
j
If you run gradlew build what problems you get?
y
Now everything is fine, I've just removed the defaultConfig statement, it seems the livrary don't need it