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 918B

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. maven {
  10. url 'https://maven.rthoni.com'
  11. }
  12. }
  13. dependencies {
  14. classpath 'com.android.tools.build:gradle:2.2.2'
  15. classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
  16. classpath 'com.google.gms:google-services:3.0.0'
  17. classpath 'de.mobilej.unmock:UnMockPlugin:0.5.0'
  18. // NOTE: Do not place your application dependencies here; they belong
  19. // in the individual module build.gradle files
  20. }
  21. }
  22. allprojects {
  23. repositories {
  24. jcenter()
  25. maven {
  26. url 'https://jitpack.io'
  27. }
  28. }
  29. }
  30. task clean(type: Delete) {
  31. delete rootProject.buildDir
  32. }