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

61 lines
1.2 KiB

  1. buildscript {
  2. repositories {
  3. mavenCentral()
  4. // 百川
  5. maven(){
  6. url "https://maven.aliyun.com/repository/public/"
  7. }
  8. maven {
  9. url "https://mvn.mob.com/android/"
  10. }
  11. maven {
  12. url 'https://artifact.bytedance.com/repository/pangle'
  13. }
  14. google()
  15. flatDir {
  16. dirs 'libs'
  17. }
  18. }
  19. dependencies {
  20. classpath 'com.android.tools.build:gradle:4.1.0'
  21. }
  22. }
  23. allprojects {
  24. repositories {
  25. mavenCentral()
  26. // 百川
  27. maven(){
  28. url "https://maven.aliyun.com/repository/public/"
  29. }
  30. maven {
  31. url "https://mvn.mob.com/android/"
  32. }
  33. maven {
  34. url 'https://artifact.bytedance.com/repository/pangle'
  35. }
  36. google()
  37. flatDir {
  38. dirs 'libs'
  39. }
  40. flatDir {
  41. dirs 'libs'
  42. }
  43. }
  44. }
  45. rootProject.buildDir = '../build'
  46. subprojects {
  47. project.buildDir = "${rootProject.buildDir}/${project.name}"
  48. }
  49. subprojects {
  50. project.evaluationDependsOn(':app')
  51. }
  52. task clean(type: Delete) {
  53. delete rootProject.buildDir
  54. }