-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
40 lines (36 loc) · 869 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
32
33
34
35
36
37
38
39
40
buildscript {
ext.kotlinVersion = '1.3.41'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
supportLibraryVersion = '27.1.1'
constraintLayoutVersion = '1.1.3'
lifecycleVersion = "1.1.1"
rxJavaVersion = '2.1.17'
rxAndroidVersion = '2.0.2'
rxBindingVersion = '2.1.1'
picassoVersion = '2.71828'
daggerVersion = "2.16"
testRunnerVersion = '1.0.2'
espressoVersion = '3.0.2'
junitCoreVersion = '4.12'
assertjCoreVersion = '3.10.0'
mockitoKotlinVersion = '1.5.0'
mockitoAndroidVersion = '2.18.3'
}