change deprecated builddir

This commit is contained in:
IndusAryan 2023-11-12 01:02:11 +05:30
parent 73a4129f86
commit fe69b3c1ed

View file

@ -25,6 +25,6 @@ plugins {
id("com.google.devtools.ksp") version "1.9.20-1.0.14" apply false
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}