build.gradle 896 B

123456789101112131415161718192021222324252627282930313233
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. apply from: "config.gradle"
  3. buildscript {
  4. repositories {
  5. maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
  6. maven { url 'https://jitpack.io' }
  7. google()
  8. jcenter()
  9. }
  10. dependencies {
  11. // classpath 'com.android.tools.build:gradle:3.0.0'
  12. classpath 'com.android.tools.build:gradle:3.5.3'
  13. // NOTE: Do not place your application dependencies here; they belong
  14. // in the individual module build.gradle files
  15. }
  16. }
  17. allprojects {
  18. repositories {
  19. maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
  20. maven { url 'https://jitpack.io' }
  21. google()
  22. jcenter()
  23. }
  24. }
  25. task clean(type: Delete) {
  26. delete rootProject.buildDir
  27. }