Ayoola Ogunleye
02/22/2024, 11:41 AMHere's the other build.gradle file: repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
Caleb Cushing
02/22/2024, 2:02 PMCaleb Cushing
02/22/2024, 2:05 PMCaleb Cushing
02/22/2024, 2:06 PMCaleb Cushing
02/22/2024, 2:07 PM