build.gradle 1.0 KB

12345678910111213141516171819202122232425262728
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. apply plugin: 'com.github.ben-manes.versions'
  3. buildscript {
  4. repositories {
  5. jcenter()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:1.5.0'
  9. classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.+'
  10. classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
  11. classpath 'me.tatarka:gradle-retrolambda:3.2.4'
  12. classpath 'com.github.ben-manes:gradle-versions-plugin:0.11.3'
  13. // NOTE: Do not place your application dependencies here; they belong
  14. // in the individual module build.gradle files
  15. }
  16. }
  17. allprojects {
  18. repositories {
  19. jcenter()
  20. maven { url "https://clojars.org/repo/" }
  21. maven { url "http://dl.bintray.com/davideas/maven" }
  22. maven { url "https://jitpack.io" }
  23. maven { url 'http://dl.bintray.com/amulyakhare/maven' }
  24. maven { url 'https://github.com/suckgamony/RapidDecoder/raw/master/repository' }
  25. }
  26. }