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

1234567891011121314151617181920212223242526272829303132333435
  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. // NOTE: Do not place your application dependencies here; they belong
  18. // in the individual module build.gradle files
  19. }
  20. }
  21. allprojects {
  22. repositories {
  23. jcenter()
  24. maven {
  25. url 'https://jitpack.io'
  26. }
  27. }
  28. }
  29. task clean(type: Delete) {
  30. delete rootProject.buildDir
  31. }