build.gradle.kts 995 B

123456789101112131415161718192021222324252627282930313233
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. plugins {
  3. id("com.github.ben-manes.versions") version "0.28.0"
  4. }
  5. buildscript {
  6. repositories {
  7. google()
  8. jcenter()
  9. }
  10. dependencies {
  11. classpath("com.android.tools.build:gradle:3.6.2")
  12. classpath("com.github.zellius:android-shortcut-gradle-plugin:0.1.2")
  13. classpath("org.jmailen.gradle:kotlinter-gradle:2.3.2")
  14. classpath("com.google.gms:google-services:4.3.3")
  15. classpath("com.google.android.gms:oss-licenses-plugin:0.10.2")
  16. // NOTE: Do not place your application dependencies here; they belong
  17. // in the individual module build.gradle files
  18. }
  19. }
  20. allprojects {
  21. repositories {
  22. google()
  23. maven { setUrl("https://www.jitpack.io") }
  24. maven { setUrl("https://plugins.gradle.org/m2/") }
  25. jcenter()
  26. }
  27. }
  28. tasks.register("clean", Delete::class) {
  29. delete(rootProject.buildDir)
  30. }