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.

36 lines
898 B

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