build.gradle 801 B

1234567891011121314151617181920212223242526272829303132
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext.kotlin_version = '1.3.21'
  4. ext.android_components_version = '0.26.0'
  5. repositories {
  6. google()
  7. jcenter()
  8. }
  9. dependencies {
  10. classpath 'com.android.tools.build:gradle:3.3.1'
  11. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.20"
  12. // NOTE: Do not place your application dependencies here; they belong
  13. // in the individual module build.gradle files
  14. }
  15. }
  16. allprojects {
  17. repositories {
  18. google()
  19. maven {
  20. url "https://maven.mozilla.org/maven2"
  21. }
  22. jcenter()
  23. maven { url "https://jitpack.io" }
  24. }
  25. }
  26. task clean(type: Delete) {
  27. delete rootProject.buildDir
  28. }