Skip to content
This repository has been archived by the owner on Jan 28, 2022. It is now read-only.

Latest commit

 

History

History
21 lines (15 loc) · 1.17 KB

Gradle.md

File metadata and controls

21 lines (15 loc) · 1.17 KB

Gradle is a project automation tool.

  • Gradle can automate the building, testing, publishing, deployment and more of software packages or other thypes of projects such as generated static websites, generated documentation or indeed anything else.
  • Gradle is build upon the concepts of Apache Ant and Apache Maven;
  • Gradle introduces a Groovy-based domain-specific language (DSL) instead of more traditional XML form of declaring the project configuration.
  • Gradle uses a directed acyclic graph ("DAG") to determine the order in which tasks can be run.
    • Unlike Apache Maven, which defines lifecycles, and Apache Ant, where targets are invoked based upon a depends-on partial ordering.
  • Gradle was designed for multi-project builds which can grow to be quite large, and supports incremental builds by intelligently determining which parts of the build tree are up-to-date, so that any task dependent upon those parts will not need to be re-executed.

topic

Android Studio

Android Build Process

Developer Workflow

Android System Architechture

Gradle

Design