build.gradle 970 B

1234567891011121314151617181920212223242526272829303132333435
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext.kotlin_version = '1.4.10'
  4. repositories {
  5. jcenter()
  6. google()
  7. mavenCentral()
  8. }
  9. dependencies {
  10. // Check that you have the Google Services Gradle plugin v4.3.2 or later
  11. // (if not, add it).
  12. classpath 'com.google.gms:google-services:4.3.4'
  13. // Add the Crashlytics Gradle plugin.
  14. classpath 'com.google.firebase:firebase-crashlytics-gradle:2.3.0'
  15. classpath 'com.android.tools.build:gradle:4.1.1'
  16. classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
  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. jcenter()
  25. google()
  26. mavenCentral()
  27. }
  28. }
  29. task clean(type: Delete) {
  30. delete rootProject.buildDir
  31. }