build.gradle 647 B

123456789101112131415161718192021222324252627
  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.2'
  11. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.21"
  12. }
  13. }
  14. allprojects {
  15. repositories {
  16. google()
  17. maven { url "https://maven.mozilla.org/maven2" }
  18. jcenter()
  19. maven { url "https://jitpack.io" }
  20. }
  21. }
  22. task clean(type: Delete) {
  23. delete rootProject.buildDir
  24. }