build.gradle 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()//保持这个放在顶部
  5. mavenCentral()
  6. maven {
  7. url "https://jitpack.io"
  8. }
  9. maven { url 'http://developer.huawei.com/repo' }
  10. // 超级实用:某某影响,很多被墙,强烈推荐阿里云镜像更新
  11. maven {
  12. url "http://maven.aliyun.com/nexus/content/groups/public/"
  13. }
  14. maven { url 'https://maven.fabric.io/public' }
  15. jcenter()//保持这个放在底部
  16. gradlePluginPortal()
  17. }
  18. dependencies {
  19. //classpath 'com.android.tools.build:gradle:3.2.1'
  20. //classpath 'com.jakewharton:butterknife-gradle-plugin:9.0.0'
  21. classpath "com.android.tools.build:gradle:4.1.3"
  22. // NOTE: Do not place your application dependencies here; they belong
  23. // in the individual module build.gradle files
  24. }
  25. }
  26. allprojects {
  27. repositories {
  28. google()//保持这个放在顶部
  29. mavenCentral()
  30. maven {
  31. url "https://jitpack.io"
  32. }
  33. maven { url 'http://developer.huawei.com/repo' }
  34. // 超级实用:某某影响,很多被墙,强烈推荐阿里云镜像更新
  35. maven {
  36. url "http://maven.aliyun.com/nexus/content/groups/public/"
  37. }
  38. maven { url 'https://maven.fabric.io/public' }
  39. jcenter()
  40. gradlePluginPortal()
  41. flatDir { dirs 'libs' }
  42. }
  43. }
  44. task clean(type: Delete) {
  45. delete rootProject.buildDir
  46. }