build.gradle 649 B

12345678910111213141516171819202122232425262728
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. jcenter()
  5. maven { url "https://jcenter.bintray.com" }
  6. maven { url "https://jitpack.io" }
  7. }
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:2.1.0'
  10. classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
  11. classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
  12. }
  13. }
  14. allprojects {
  15. repositories {
  16. jcenter()
  17. maven { url "https://jitpack.io" }
  18. }
  19. }
  20. task clean(type: Delete) {
  21. delete rootProject.buildDir
  22. }