-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
59 lines (47 loc) · 1.38 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
54
55
56
57
58
59
// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext {
targetSdkVersion = 27
mindkVersion = 16
buildToolsVersion = '26.0.2'
supportLibraryVersion = '27.0.1'
leakCanaryVersion = '1.5.1'
daggerVersion = '2.13'
stethoVersion = '1.5.0'
retrofitVersion = '2.3.0'
okHttpVersion = '3.9.0'
epoxyVersion = '2.0.0'
rxAndroidVersion = '2.0.1'
rxJavaVersion = '2.1.6'
timberVersion = '4.6.0'
epoxyVersion = '2.7.2'
databindVersion = '3.0.0'
// Test dependencies
junitVersion = '4.12'
mockitoVersion = '2.12.0'
hamcrestVersion = '1.3'
mockitoKotlinVersion = '1.5.0'
}
buildscript {
ext.kotlinVersion = '1.1.60'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.1'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply plugin: 'com.github.ben-manes.versions'