Override Gradle Task implementation from dependency
So I have Android Project using Gradle that uses library A with Task MPManifestTask
that run every time I build.
Access Android application variants / library variants in buildSrc
I am migrating my gradle files to kotlin dsl. My current setup in Groovy is I have a sonar.gradle
, a projectjacoco.gradle
and a modulegradle.gradle
all included in my build.gradle
. I have now migrated my build.gradle
to build.gradle.kts
. I understand I now need to re-write these external gradle files in kotlin-dsl
and include them in the buildSrc
folder structure:
e.g.