build.gradle 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. maven {
  5. url 'https://maven.aliyun.com/repository/jcenter'
  6. }
  7. maven {
  8. url 'https://maven.aliyun.com/repository/central'
  9. }
  10. maven {
  11. url 'https://maven.aliyun.com/repository/google'
  12. }
  13. maven { url "https://jitpack.io" }
  14. }
  15. dependencies {
  16. classpath 'com.android.tools.build:gradle:3.2.0'
  17. classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' // greendao
  18. // NOTE: Do not place your application dependencies here; they belong
  19. // in the individual module build.gradle files
  20. }
  21. }
  22. allprojects {
  23. repositories {
  24. maven {
  25. url 'https://maven.aliyun.com/repository/jcenter'
  26. }
  27. maven {
  28. url 'https://maven.aliyun.com/repository/central'
  29. }
  30. maven {
  31. url 'https://maven.aliyun.com/repository/google'
  32. }
  33. maven {
  34. url 'http://www.idescout.com/maven/repo/'
  35. name 'IDEScout, Inc.'
  36. }
  37. maven { url "https://jitpack.io" }
  38. }
  39. }
  40. task clean(type: Delete) {
  41. delete rootProject.buildDir
  42. }