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.

34 lines
891 B

6 years ago
6 years 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:4.1.0'
  10. classpath 'com.google.gms:google-services:4.3.10'
  11. classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
  12. // NOTE: Do not place your application dependencies here; they belong
  13. // in the individual module build.gradle files
  14. }
  15. }
  16. allprojects {
  17. repositories {
  18. google()
  19. jcenter()
  20. mavenCentral()
  21. maven { url 'https://zendesk.jfrog.io/zendesk/repo' }
  22. maven { url 'https://maven.google.com/' }
  23. maven { url "https://jitpack.io" }
  24. }
  25. }
  26. task clean(type: Delete) {
  27. delete rootProject.buildDir
  28. }