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

build.gradle 751 B

4 년 전
4 년 전
4 년 전
4 년 전
1234567891011121314151617181920212223242526272829303132333435363738394041
  1. buildscript {
  2. repositories {
  3. google()
  4. jcenter()
  5. flatDir {
  6. dirs 'libs'
  7. }
  8. }
  9. dependencies {
  10. classpath 'com.android.tools.build:gradle:3.5.0'
  11. classpath "com.mob.sdk:MobSDK:2018.0319.1724"
  12. }
  13. }
  14. allprojects {
  15. repositories {
  16. google()
  17. jcenter()
  18. maven {
  19. url "http://repo.baichuan-android.taobao.com/content/groups/BaichuanRepositories/"
  20. }
  21. flatDir {
  22. dirs 'libs'
  23. }
  24. }
  25. }
  26. rootProject.buildDir = '../build'
  27. subprojects {
  28. project.buildDir = "${rootProject.buildDir}/${project.name}"
  29. }
  30. subprojects {
  31. project.evaluationDependsOn(':app')
  32. }
  33. task clean(type: Delete) {
  34. delete rootProject.buildDir
  35. }