build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. maven { url 'https://maven.aliyun.com/repository/public' }
  5. maven { url 'https://maven.aliyun.com/repository/google' }
  6. maven { url 'https://maven.aliyun.com/repository/jcenter' }
  7. maven { url 'https://jitpack.io' }
  8. mavenLocal()
  9. google()
  10. jcenter()
  11. }
  12. dependencies {
  13. classpath 'com.android.tools.build:gradle:4.1.0'
  14. // classpath "com.android.tools.build:gradle:3.4.3"
  15. // NOTE: Do not place your application dependencies here; they belong
  16. classpath "com.github.kezong:fat-aar:1.3.8"
  17. }
  18. }
  19. allprojects {
  20. repositories {
  21. maven { url 'https://maven.aliyun.com/repository/public' }
  22. maven { url 'https://maven.aliyun.com/repository/google' }
  23. maven { url 'https://maven.aliyun.com/repository/jcenter' }
  24. maven { url 'https://jitpack.io' }
  25. mavenLocal()
  26. google()
  27. jcenter()
  28. }
  29. }
  30. task clean(type: Delete) {
  31. delete rootProject.buildDir
  32. }