-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdependencies.gradle
More file actions
executable file
·110 lines (88 loc) · 4.43 KB
/
Copy pathdependencies.gradle
File metadata and controls
executable file
·110 lines (88 loc) · 4.43 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
ext {
def appcompatVersion = '1.0.2'
def material = '1.0.0'
def constraintLayout = '1.1.3'
def fragment = '1.0.0'
def core = '1.0.2'
def legacySupportCoreUtils = '1.0.0'
def legacySupportCoreUi = '1.0.0'
def coreKtx = '1.0.2'
def cardViewVersion = '1.0.0'
def recyclerViewVersion = '1.0.0'
def retrofitLibraryVersion = '2.6.0'
def gsonLibraryVersion = '2.8.5'
def rxAndroidVersion = '2.1.1'
def okHttpLibraryVersion = '4.0.0'
def lifecycleExtensions = '2.0.0'
def roomRuntime = '2.1.0'
def lifecycleRuntime = '2.0.0'
def roomRxJava2 = '2.1.0'
def lifecycleCompiler = '2.0.0'
def roomCompiler = '2.1.0'
def kotlinxCoroutinesAndroid = '1.2.2'
def retrofit2KotlinCoroutinesAdapter = '0.9.2'
def glide = '4.9.0'
def picasso = '2.71828'
def sdpVersion = '1.0.6'
def playServiceLibraryVersion = '17.0.0'
def workerVersion = '1.0.1'
def pagingRuntime = '2.1.0'
def koinVersion = '1.0.2'
androidSupportDependencies = [
appcompat : "androidx.appcompat:appcompat:${appcompatVersion}",
material : "com.google.android.material:material:${material}",
constraintLayout : "androidx.constraintlayout:constraintlayout:${constraintLayout}",
fragment : "androidx.fragment:fragment:${fragment}",
core : "androidx.core:core:${core}",
legacySupportCoreUtils: "androidx.legacy:legacy-support-core-utils:${legacySupportCoreUtils}",
legacySupportCoreUi : "androidx.legacy:legacy-support-core-ui:${legacySupportCoreUi}",
coreKtx : "androidx.core:core-ktx:${coreKtx}",
cardview : "androidx.cardview:cardview:${cardViewVersion}",
recyclerview : "androidx.recyclerview:recyclerview:${recyclerViewVersion}",
]
retrofitGSONOkHttpDependencies = [
retrofit : "com.squareup.retrofit2:retrofit:$retrofitLibraryVersion",
gson : "com.google.code.gson:gson:$gsonLibraryVersion",
converterGson : "com.squareup.retrofit2:converter-gson:$retrofitLibraryVersion",
adapterRxJava2 : "com.squareup.retrofit2:adapter-rxjava2:$retrofitLibraryVersion",
rxAndroid : "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion",
okhttp : "com.squareup.okhttp3:okhttp:$okHttpLibraryVersion",
loggingInterceptor: "com.squareup.okhttp3:logging-interceptor:$okHttpLibraryVersion",
]
architectureDependencies = [
lifecycleExtensions: "androidx.lifecycle:lifecycle-extensions:$lifecycleExtensions",
roomRuntime : "androidx.room:room-runtime:$roomRuntime",
lifecycleRuntime : "androidx.lifecycle:lifecycle-runtime:$lifecycleRuntime",
roomRxJava2 : "androidx.room:room-rxjava2:$roomRxJava2",
roomKtx : "androidx.room:room-ktx:$roomRuntime"
]
architectureKapt = [
lifecycleCompiler: "androidx.lifecycle:lifecycle-compiler:$lifecycleCompiler",
roomCompiler : "androidx.room:room-compiler:$roomCompiler"
]
coroutineDependencies = [
kotlinxCoroutinesAndroid : "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinxCoroutinesAndroid",
retrofit2KotlinCoroutinesAdapter: "com.jakewharton.retrofit:retrofit2-kotlin-coroutines-adapter:$retrofit2KotlinCoroutinesAdapter"
]
picasoGlideDependencies = [
glide : "com.github.bumptech.glide:glide:$glide",
picasso: "com.squareup.picasso:picasso:$picasso",
]
sdpSspDependencies = [
sdpAndroid: "com.intuit.sdp:sdp-android:$sdpVersion",
sspAndroid: "com.intuit.ssp:ssp-android:$sdpVersion"
]
playSeriviceDependencies = [
playServicesLocation: "com.google.android.gms:play-services-location:$playServiceLibraryVersion"
]
pagingDependencies = [
pagingRuntime : "androidx.paging:paging-runtime:$pagingRuntime",
workRuntimeKtx: "android.arch.work:work-runtime-ktx:$workerVersion"
]
koinDependencies = [
koinCore : "org.koin:koin-core:$koinVersion",
koinAndroid: "org.koin:koin-android:$koinVersion",
koinViewmodel: "org.koin:koin-androidx-viewmodel:$koinVersion",
koinScope: "org.koin:koin-androidx-scope:$koinVersion"
]
}