forked from azinovenko1/WeatherYAMBLZ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (54 loc) · 1.35 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
buildscript {
repositories {
jcenter()
mavenCentral()
maven {
url "https://maven.google.com"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.7.3'
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1'
classpath 'me.tatarka:gradle-retrolambda:3.6.1'
}
}
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
//sdk versions
compile_sdk_version = 26
min_sdk_version = 19
target_sdk_version = 26
//libraries
support_version = '26.0.1'
butter_knife_version = '8.6.0'
moxy_version = '1.5.3'
retrofit_version = '2.3.0'
rxjava_version = '2.1.1'
rxandroid_version = '2.0.1'
androidjob_version = '1.1.11'
stetho_version = '1.5.0'
leak_canary_version = '1.5.1'
timber_version = '4.5.1'
rxprefs_version = '2.0.0-RC2'
dagger_version = '2.11'
room_version = '1.0.0-alpha8'
constraint_version = '1.1.0-beta1'
rxbinding_version = '2.0.0'
//tests
hamcrest_version = '1.3'
mockito_version = '2.8.47'
junit_version = '4.12'
espresso_version = '2.2.2'
robolectric_version = '3.4.2'
}