12 lines
197 B
Text
12 lines
197 B
Text
|
|
plugins {
|
||
|
|
id("MagiskPlugin")
|
||
|
|
}
|
||
|
|
|
||
|
|
tasks.register("clean", Delete::class) {
|
||
|
|
delete(rootProject.layout.buildDirectory)
|
||
|
|
|
||
|
|
subprojects.forEach {
|
||
|
|
dependsOn(":${it.name}:clean")
|
||
|
|
}
|
||
|
|
}
|