You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
960 B

6 years ago
6 years ago
1 year ago
6 years ago
6 years ago
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. jcenter()
  6. maven { url "https://jitpack.io" }
  7. }
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:7.2.0'
  10. classpath 'com.google.gms:google-services:4.3.10'
  11. classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
  12. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
  13. // NOTE: Do not place your application dependencies here; they belong
  14. // in the individual module build.gradle files
  15. }
  16. }
  17. allprojects {
  18. repositories {
  19. google()
  20. jcenter()
  21. mavenCentral()
  22. maven { url 'https://zendesk.jfrog.io/zendesk/repo' }
  23. maven { url 'https://maven.google.com/' }
  24. maven { url "https://jitpack.io" }
  25. }
  26. }
  27. task clean(type: Delete) {
  28. delete rootProject.buildDir
  29. }