diff --git a/build.gradle.kts b/build.gradle.kts index add2654..96dbfba 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -38,7 +38,7 @@ val androidSourceCompatibility by extra(JavaVersion.VERSION_17) val androidTargetCompatibility by extra(JavaVersion.VERSION_17) tasks.register("Delete", Delete::class) { - delete(rootProject.buildDir) + delete(layout.buildDirectory) } fun Project.configureBaseExtension() { @@ -72,6 +72,7 @@ fun Project.configureBaseExtension() { } lint { + checkReleaseBuilds = false abortOnError = true }