build.gradle 981 B

12345678910111213141516171819202122232425262728293031323334353637
  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.google.com/'
  8. name 'Google'
  9. }
  10. }
  11. dependencies {
  12. classpath 'com.android.tools.build:gradle:3.4.2'
  13. classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3"
  14. classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
  15. classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
  16. // NOTE: Do not place your application dependencies here; they belong
  17. // in the individual module build.gradle files
  18. }
  19. }
  20. allprojects {
  21. repositories {
  22. google()
  23. jcenter()
  24. maven {
  25. url 'https://maven.google.com/'
  26. name 'Google'
  27. }
  28. maven { url 'https://jitpack.io' }
  29. }
  30. }
  31. task clean(type: Delete) {
  32. delete rootProject.buildDir
  33. }