智莺生活APP的阿里百川 Flutter 插件
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

33 lines
591 B

  1. buildscript {
  2. repositories {
  3. google()
  4. jcenter()
  5. maven {
  6. url "http://repo.baichuan-android.taobao.com/content/groups/BaichuanRepositories/"
  7. }
  8. }
  9. dependencies {
  10. classpath 'com.android.tools.build:gradle:3.3.2'
  11. }
  12. }
  13. allprojects {
  14. repositories {
  15. google()
  16. jcenter()
  17. }
  18. }
  19. rootProject.buildDir = '../build'
  20. subprojects {
  21. project.buildDir = "${rootProject.buildDir}/${project.name}"
  22. }
  23. subprojects {
  24. project.evaluationDependsOn(':app')
  25. }
  26. task clean(type: Delete) {
  27. delete rootProject.buildDir
  28. }