-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
74 lines (66 loc) · 2.93 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
buildscript {
repositories {
maven { url 'https://maven.google.com' }
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
}
}
allprojects {
repositories {
maven { url 'https://maven.google.com' }
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
supportLibVersion = '26.0.1'
daggerVersion = '2.11'
retrofitVersion = '2.1.0'
gsonConverterVersion = '2.1.0'
okhttpVersion = '3.8.1'
picassoVersion = '2.5.2'
archVersion = '1.0.0-alpha9'
timberVersion = '4.5.1'
rxjavaVersion = '2.1.3'
rxAndroidVersion = '2.0.1'
retrofitVersion = '2.3.0'
constraintsVersion = '1.0.2'
supportLibAppCompat = "com.android.support:appcompat-v7:$supportLibVersion"
supportCardView = "com.android.support:cardview-v7:$supportLibVersion"
supportLibDesign = "com.android.support:design:$supportLibVersion"
archRuntime = "android.arch.lifecycle:runtime:$archVersion"
archExtension = "android.arch.lifecycle:extensions:$archVersion"
archCompiler = "android.arch.lifecycle:compiler:$archVersion"
dagger = "com.google.dagger:dagger:$daggerVersion"
daggerCompiler = "com.google.dagger:dagger-compiler:$daggerVersion"
daggerAndroid = "com.google.dagger:dagger-android:$daggerVersion"
daggerAndroidSupport = "com.google.dagger:dagger-android-support:$daggerVersion"
daggerAndroidProcessor = "com.google.dagger:dagger-android-processor:$daggerVersion"
retrofit = "com.squareup.retrofit2:retrofit:$retrofitVersion"
gsonConverter = "com.squareup.retrofit2:converter-gson:$gsonConverterVersion"
okhttp = "com.squareup.okhttp3:okhttp:$okhttpVersion"
okhttpInterceptor = "com.squareup.okhttp3:logging-interceptor:$okhttpVersion"
okhttpUrlConnection = "com.squareup.okhttp3:okhttp-urlconnection:$okhttpVersion"
rxJava = "io.reactivex.rxjava2:rxjava:$rxjavaVersion"
rxAndroid = "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion"
picasso = "com.squareup.picasso:picasso:$picassoVersion"
timber = "com.jakewharton.timber:timber:$timberVersion"
retrofitRxAdapter = "com.squareup.retrofit2:adapter-rxjava2:$retrofitVersion"
retrofitGson = "com.squareup.retrofit2:converter-gson:$retrofitVersion"
constrains = "com.android.support.constraint:constraint-layout:$constraintsVersion"
junitVersion = '4.12'
testRunnerVersion = '1.0.1'
espressoCoreVersion = '3.0.1'
espressoContribVersion = '2.2.2'
mockitoVersion = '2.11.0'
junit = "junit:junit:$junitVersion"
testRunner = "com.android.support.test:runner:$testRunnerVersion"
espressoCore = "com.android.support.test.espresso:espresso-core:$espressoCoreVersion"
espressoContrib = "com.android.support.test.espresso:espresso-contrib:$espressoContribVersion"
supportAnnotations = "com.android.support:support-annotations:$supportLibVersion"
mockito = "org.mockito:mockito-core:$mockitoVersion"
}