build.gradle 694 B

1234567891011121314151617181920212223242526
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. jcenter()
  5. }
  6. dependencies {
  7. classpath 'com.android.tools.build:gradle:2.3.3'
  8. classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
  9. // NOTE: Do not place your application dependencies here; they belong
  10. // in the individual module build.gradle files
  11. }
  12. }
  13. allprojects {
  14. repositories {
  15. jcenter()
  16. maven { url "https://jitpack.io" }
  17. maven { url "https://raw.githubusercontent.com/Pgyer/mvn_repo_pgyer/master" }
  18. }
  19. }
  20. task clean(type: Delete) {
  21. delete rootProject.buildDir
  22. }