Skip to content

Android Studio Build System

10/07/2022 17:39

Parent: Android Tags: #android

Android Studio Build System:

  • Android studio build system is Gradle which is a build automation tool for the software developers to automate the build. It includes:

    • Compiling code
    • Debugging code
    • Setting test environment
  • Gradle is the successor of Apache Ant and Maven.

  • Gradle integrates resources and configurations of builds separately resulting in different builds for a single app (free and premium versions)

  • Build.gradle file includes all the dependencies, version names, minimum and stable sdk versions in one file and it can updated to be reflected on each build.


References:

On this page