Gradle task: is basic single unit of work that gradle does.
Tasks like run,clean, build dependencies etc.
To execute any task .
./gradlew [taskname] [options]
Ex: ./gradlew clean
To run multiple task
./gradlew clean build
#learn #gradleWithSid #buildtool #dev