build.gradle 이란?

모듈의 빌드 방법이 정의된 빌드스크립트

빌드에 사용할 SDK버전부터 어플리케이션 버전, 사용할 라이브러리 등 다양한 항목을 설정할 수 있다.

 

build.gradle(Project : ${ProjectName})

Top-level build file where you can add configuration options common to all sub-projects/modules.

각각의 프로젝트에는 최상위 gradle 파일이 포함되어 있다.

일반적으로 모든 모듈에 대한 공통 구성을 포함한다.

 

build.gradle(Module : app)

Build file of your specific module (where you add your dependencies, signing configs, build types, flavors, etc)

모든 모듈은 특정 gradle 파일이 있다.

gradle 파일에 무엇이 포함되어 있든지 간에, 오직 포함된 모듈에만 영향을 미친다.

 

 

[출처]

https://stackoverflow.com/questions/28295933/difference-between-build-gradleproject-and-build-gradlemodule

 

Difference between build.gradle(Project) and build.gradle(Module)

I am trying to add a dependency of Android Asynchronous Http Client into my project. So there are two build.gradle files are there in the project. As per my understanding, there are different kind...

stackoverflow.com

 

 

+ Recent posts