Answer the question
In order to leave comments, you need to log in
In what cases is "delete rootProject.buildDir" used in gradle?
In gradle:
task clean(type: Delete) {
delete rootProject.buildDir
}
gradlew clean
does not only execute the clean task of your root project, but the clean
task of any project in the build. clean
task that deletes the build directory. Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question