智莺生活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.
 
 
 
 
 
 

31 line
486 B

  1. buildscript {
  2. repositories {
  3. google()
  4. }
  5. dependencies {
  6. classpath 'com.android.tools.build:gradle:3.3.2'
  7. }
  8. }
  9. allprojects {
  10. repositories {
  11. google()
  12. flatDir {
  13. dirs 'libs'
  14. }
  15. }
  16. }
  17. rootProject.buildDir = '../build'
  18. subprojects {
  19. project.buildDir = "${rootProject.buildDir}/${project.name}"
  20. }
  21. subprojects {
  22. project.evaluationDependsOn(':app')
  23. }
  24. task clean(type: Delete) {
  25. delete rootProject.buildDir
  26. }