build.gradle 826 B

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