-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathdependencies.gradle
90 lines (80 loc) · 2.62 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
ext {
// Build SDK versions
buildToolsVersion = '24.0.0'
minSdkVersion = 14
compileSdkVersion = 23
targetSdkVersion = 22
// Build settings
ci = 'true'.equals(System.getenv('CI'))
// Dependencies - Support Library
appCompat =
'com.android.support:appcompat-v7:24.0.0'
constraintLayout =
'com.android.support.constraint:constraint-layout:1.0.0-alpha1'
design =
'com.android.support:design:24.0.0'
recyclerView =
'com.android.support:recyclerview-v7:24.0.0'
// Dependencies - Data handling
eventBus =
'org.greenrobot:eventbus:3.0.0'
// Dependencies - Dependency injection
butterknife =
'com.jakewharton:butterknife:8.0.1'
butterknifeCompiler =
'com.jakewharton:butterknife-compiler:8.0.1'
dagger =
'com.google.dagger:dagger:2.4'
daggerCompiler =
'com.google.dagger:dagger-compiler:2.4'
jsr250 =
'javax.annotation:jsr250-api:1.0'
// Dependencies - Network
firebaseMessaging =
'com.google.firebase:firebase-messaging:9.0.2'
okHttp =
'com.squareup.okhttp3:okhttp:3.3.1'
okHttpLoggingInterceptor =
'com.squareup.okhttp3:logging-interceptor:3.3.1'
retrofit =
'com.squareup.retrofit2:retrofit:2.0.2'
retrofitConverterGson =
'com.squareup.retrofit2:converter-gson:2.0.2'
retrofitAdapterRxJava =
'com.squareup.retrofit2:adapter-rxjava:2.0.2'
// Dependencies - Images with Network
picasso =
'com.squareup.picasso:picasso:2.5.2'
// Dependencies - Rx
rxAndroid =
'io.reactivex:rxandroid:1.2.0'
rxAsync =
'io.reactivex:rxjava-async-util:0.21.0'
rxBinding =
'com.jakewharton.rxbinding:rxbinding:0.4.0'
rxJava =
'io.reactivex:rxjava:1.1.5'
rxJavaDebug =
'io.reactivex:rxjava-debug:1.0.3'
rxLifecycle =
'com.trello:rxlifecycle:0.6.1'
rxLifecycleComponents =
'com.trello:rxlifecycle-components:0.6.1'
rxRelay =
'com.jakewharton.rxrelay:rxrelay:1.1.0'
rxReplayingShare =
'com.jakewharton.rx:replaying-share:1.0.1'
// Dependencies - Stream
lightWeightStream =
'com.annimon:stream:1.0.9'
// Dependencies - Kotlin
kotlin =
'org.jetbrains.kotlin:kotlin-stdlib:1.0.3'
// Dependencies - Test
assertjAndroid =
'com.squareup.assertj:assertj-android:1.1.1'
junit =
'junit:junit:4.12'
mockitoCore =
'org.mockito:mockito-core:1.10.19'
}