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.

build.gradle 917B

123456789101112131415161718192021222324252627282930313233343536
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. jcenter()
  5. mavenCentral()
  6. maven {
  7. url 'http://dl.bintray.com/amulyakhare/maven'
  8. }
  9. }
  10. dependencies {
  11. classpath 'com.android.tools.build:gradle:2.2.2'
  12. classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
  13. classpath 'com.google.gms:google-services:3.0.0'
  14. classpath 'de.mobilej.unmock:UnMockPlugin:0.5.0'
  15. // NOTE: Do not place your application dependencies here; they belong
  16. // in the individual module build.gradle files
  17. }
  18. }
  19. allprojects {
  20. repositories {
  21. jcenter()
  22. maven {
  23. url 'https://jitpack.io'
  24. }
  25. maven {
  26. url 'http://maven.rthoni.com'
  27. }
  28. }
  29. }
  30. task clean(type: Delete) {
  31. delete rootProject.buildDir
  32. }