build.gradle.kts 924 B

1234567891011121314151617181920212223242526272829303132
  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.1")
  14. classpath("com.google.gms:google-services:4.3.3")
  15. // NOTE: Do not place your application dependencies here; they belong
  16. // in the individual module build.gradle files
  17. }
  18. }
  19. allprojects {
  20. repositories {
  21. google()
  22. maven { setUrl("https://www.jitpack.io") }
  23. maven { setUrl("https://plugins.gradle.org/m2/") }
  24. jcenter()
  25. }
  26. }
  27. tasks.register("clean", Delete::class) {
  28. delete(rootProject.buildDir)
  29. }