-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
53 lines (50 loc) · 1.49 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// add versions that occur at least twice
versions = [
buildTools: "27.0.3",
kotlin : "1.2.30",
support : "27.0.2",
dagger : "2.14.1",
retrofit : "2.3.0",
chuck : "1.1.0",
lifecycle : '1.1.0',
glide : '4.6.1',
espresso : "3.0.1",
firebase : "11.8.0"
]
}
repositories {
google()
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
maven {
url "https://jitpack.io"
}
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath 'org.jacoco:org.jacoco.core:0.7.9'
classpath "gradle.plugin.pl.droidsonroids.gradle.ui.test:plugin:2.0.2"
classpath 'com.github.trevjonez.composer-gradle-plugin:plugin:0.5.1'
classpath 'com.google.gms:google-services:3.2.0'
classpath 'io.fabric.tools:gradle:1.25.1'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}