When creating a new project in Android Studio (version 2.1), the root build.gradle file performs the following task:
task clean(type: Delete) { delete rootProject.buildDir }
I noticed that some Android projects do not have this custom task and use gradle clean task by default. What is the disadvantage if you do not have the above user-defined clean task?
source share