0 votes
in Gradle by
Explain Gradle Build Life Cycle?

1 Answer

0 votes
by

The Gradle Build life cycle has three important steps. If you don’t follow these steps, the build cycle will fail. The three steps are the initialization phase, execution phase, and configuration phase.

Initialization phase: This is the phase where the organization of project layers takes place.

Configuration phase: is the phase where you can find the build for current tasks and create dependency graph for them.

Execution Phase: The phase where the execution of the end tasks takes place.

Key Features of Graph build life cycle:

During its lifecycle, it can easily receive notifications

The type of build is determined by settings,gradle

Related questions

0 votes
asked Apr 14, 2020 in Gradle by Robindeniel
0 votes
asked Feb 17, 2020 in Gradle by rajeshsharma
...