build.gradle 886 B

12345678910111213141516171819202122232425262728293031323334
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext.fss_version = '1.0.49'
  4. ext.kotlin_version = '1.2.71'
  5. repositories {
  6. maven {url 'http://maven.aliyun.com/nexus/content/groups/public/'}
  7. }
  8. repositories {
  9. google()
  10. maven {
  11. url "https://maven.google.com"
  12. }
  13. jcenter()
  14. }
  15. dependencies {
  16. classpath 'com.android.tools.build:gradle:3.0.1'
  17. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  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. google()
  25. jcenter()
  26. maven { url "https://jitpack.io" }
  27. }
  28. }
  29. task clean(type: Delete) {
  30. delete rootProject.buildDir
  31. }