-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
31 lines (28 loc) · 890 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath 'me.tatarka:gradle-retrolambda:3.3.0-beta4'
classpath 'me.tatarka.retrolambda.projectlombok:lombok.ast:0.2.3.a2'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.6.1'
}
}
allprojects {
repositories {
jcenter()
flatDir { dir 'libs' }
maven { url 'https://houndify.com/maven/' }
maven { url 'https://jitpack.io' }
maven { url 'https://s3.amazonaws.com/repo.commonsware.com' }
}
}
subprojects {
task allDeps(type: DependencyReportTask) {}
}
task clean(type: Delete) {
delete rootProject.buildDir
}