-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
95 lines (76 loc) · 3.77 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
91
92
93
94
95
allprojects {
repositories {
jcenter()
}
}
ext {
language = [
java : JavaVersion.VERSION_1_8,
kotlin: '1.3.10'
]
//Android
androidBuildToolsVersion = '28.0.3'
androidMinSdkVersion = 16
androidTargetSdkVersion = 28
androidCompileSdkVersion = 28
appcompatVersion = "26.0.2"
designVersion = "24.2.1"
//Libraries
daggerVersion = '2.21'
firebase = '16.0.5'
anko = '0.10.8'
//Testing libraries
jUnitVersion = '4.12'
lib = [
//Android
appcompat : "com.android.support:appcompat-v7:${appcompatVersion}",
vectorDrawable : "com.android.support:animated-vector-drawable:${appcompatVersion}",
cardView : "com.android.support:cardview-v7:${appcompatVersion}",
design : "com.android.support:design:${designVersion}",
constraintLayout : "com.android.support.constraint:constraint-layout:1.1.3",
//Firebase
firebaseAuth : "com.google.firebase:firebase-auth:${firebase}",
firebaseDatabase : "com.google.firebase:firebase-database:${firebase}",
firebaseStorage : "com.google.firebase:firebase-storage:${firebase}",
//RX + Firebase
firebaseRx : "com.github.FrangSierra:RxFirebase:1.5.6",
//RX
rxBinding : "com.jakewharton.rxbinding3:rxbinding:3.0.0-alpha1",
//Rx + Image
rxPaparazzo : "com.github.miguelbcr:RxPaparazzo:0.6.0-2.x",
//Social
facebookCore : "com.facebook.android:facebook-core:4.40.0",
facebookLogin : "com.facebook.android:facebook-login:4.40.0",
//Dagger
daggerCompiler : "com.google.dagger:dagger-compiler:${daggerVersion}",
dagger : "com.google.dagger:dagger:${daggerVersion}",
daggerAndroid : "com.google.dagger:dagger-android:${daggerVersion}",
daggerCompilerAndroid: "com.google.dagger:dagger-android-processor:${daggerVersion}",
daggerAndroidSupport : "com.google.dagger:dagger-android-support:${daggerVersion}",
//Anko
anko : "org.jetbrains.anko:anko:${anko}",
//Custom UI
toggleButton : "com.nex3z:toggle-button-group:1.1.8",
roundedImageView : "com.makeramen:roundedimageview:2.3.0",
rangeBar : "com.appyvet:materialrangebar:1.3",
spinner : "com.jaredrummler:material-spinner:1.3.1",
blur : "jp.wasabeef:blurry:2.1.1",
expandableRecycler : "com.bignerdranch.android:expandablerecyclerview:1.0.3",
asyncExpandList : "com.ericliu.asyncexpandablelist:asyncexpandablelist:1.1.0",
ripple : "com.skyfishjy.ripplebackground:library:1.0.1",
swipeCards : "android-card-stack-0.1.6",
//Image Loading
picasso : "com.squareup.picasso:picasso:2.71828",
//Chat
chatKit : "com.github.stfalcon:chatkit:0.3.3",
//Tests
jUnit : "junit:junit:${jUnitVersion}",
mokito : "org.mockito:mockito-core:2.+",
mokitoKotlin : "com.nhaarman:mockito-kotlin-kt1.1:1.6.0",
espressoCore : "com.android.support.test.espresso:espresso-core:2.2.2",
//Utils
khronos : "com.github.hotchemi:khronos:0.9.0",
gson : "com.google.code.gson:gson:2.8.5",
kotlin : "org.jetbrains.kotlin:kotlin-stdlib:$language.kotlin",
]
}