-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
45 lines (41 loc) · 1.13 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
maven { url 'http://dl.bintray.com/igenius-code/maven' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
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 {
arch_version = "1.0.0-alpha3"
support_version = "25.3.1"
dagger_version = "2.11"
retrofit_version = "2.2.0"
constraint_layout_version = "1.0.2"
glide_version = "3.7.0"
rxjava_version = "2.1.0"
rxandroid_version = "2.0.1"
stetho_version = "1.5.0"
stetho_noop_version = "1.1"
leakcanary_version = "1.5"
google_places_version = "11.0.2"
mockito_version = "2.1.0"
junit_version = "4.12"
assertj_version = "3.8.0"
okhttp_version = "3.8.1"
espresso_version = "2.2.2"
findbugs_version = "1.3.9"
}