25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
322 B

  1. allprojects {
  2. repositories {
  3. google()
  4. mavenCentral()
  5. }
  6. }
  7. rootProject.buildDir = "../build"
  8. subprojects {
  9. project.buildDir = "${rootProject.buildDir}/${project.name}"
  10. }
  11. subprojects {
  12. project.evaluationDependsOn(":app")
  13. }
  14. tasks.register("clean", Delete) {
  15. delete rootProject.buildDir
  16. }