-
Notifications
You must be signed in to change notification settings - Fork 39
/
dependencies.gradle
24 lines (18 loc) · 1.24 KB
/
dependencies.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
ext {
dependencies = [junit : 'junit:junit:4.12',
mockito : 'org.mockito:mockito-core:2.7.7',
constraintLayout : 'com.android.support.constraint:constraint-layout:1.1.2',
appCompatV7 : 'com.android.support:appcompat-v7:28.0.0',
recyclerview : 'com.android.support:recyclerview-v7:28.0.0',
rxJava : 'io.reactivex:rxjava:1.1.5',
rxAndroid : 'io.reactivex:rxandroid:1.2.0',
retrofit2 : 'com.squareup.retrofit2:retrofit:2.0.2',
retrofit2Adapter : 'com.squareup.retrofit2:adapter-rxjava:2.0.1',
retrofitGson : 'com.squareup.retrofit2:converter-gson:2.0.2',
loggingInterceptor: 'com.squareup.okhttp3:logging-interceptor:3.4.1',
okhttp : 'com.squareup.okhttp3:okhttp:3.4.1',
glide : 'com.github.bumptech.glide:glide:3.7.0',
dagger2 : 'com.google.dagger:dagger:2.8',
dagger2Compile : 'com.google.dagger:dagger-compiler:2.8',
annotation : 'javax.annotation:javax.annotation-api:1.2',]
}