-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
66 lines (61 loc) · 3.32 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
ext {
//Android Core
compileSdkVersion = 29
targetSdkVersion = 29
minSdkVersion = 21
buildToolsVersion = "29.0.2"
//Presentation
appcompatVersion = '1.1.0'
androidxCoreKtxVersion = '1.1.0'
constraintLayoutVersion = '1.1.3'
supportV4Version = '1.0.0'
navVersion = '2.1.0'
materialVersion = '1.2.0'
fragmentKtxVersion = '1.1.0'
koinVersion = '2.2.0-alpha-1'
lifecycleExtensionsVersion = '2.1.0'
recyclerviewAnimationVersion = '3.0.0'
navigation = '2.2.2'
coroutinesCoreVersion = '1.3.3'
glide = '4.11.0'
//Data
retrofitVersion = '2.7.0'
gsonVersion = '2.8.6'
loggingInterceptorVersion = '4.2.1'
roomVersion = '2.2.5'
appDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion",
appCompat : "androidx.appcompat:appcompat:$appcompatVersion",
androidxKtx : "androidx.core:core-ktx:$androidxCoreKtxVersion",
constraintLayout : "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion",
supportV4 : "androidx.legacy:legacy-support-v4:$supportV4Version",
material : "com.google.android.material:material:$materialVersion",
fragmentKtx : "androidx.fragment:fragment-ktx:$fragmentKtxVersion",
koinAndroid : "org.koin:koin-android:$koinVersion",
koinLifeCycleScope : "org.koin:koin-android-scope:$koinVersion",
koinAndroidViewModel : "org.koin:koin-androidx-viewmodel:$koinVersion",
lifecycleExtensions : "androidx.lifecycle:lifecycle-extensions:$lifecycleExtensionsVersion",
recyclerviewAnimations : "jp.wasabeef:recyclerview-animators:$recyclerviewAnimationVersion",
navigationFragment : "androidx.navigation:navigation-fragment-ktx:$navigation",
navigationUI : "androidx.navigation:navigation-ui-ktx:$navigation",
glide : "com.github.bumptech.glide:glide:$glide",
glideCompiler : "com.github.bumptech.glide:compiler:$glide"
]
dataDependencies = [
retrofit : "com.squareup.retrofit2:retrofit:$retrofitVersion",
retrofitGsonConverter: "com.squareup.retrofit2:converter-gson:$retrofitVersion",
gson : "com.google.code.gson:gson:$gsonVersion",
room : "androidx.room:room-runtime:$roomVersion",
roomKtx : "androidx.room:room-ktx:$roomVersion",
roomCompiler : "androidx.room:room-compiler:$roomVersion",
loggingInterceptor : "com.squareup.okhttp3:logging-interceptor:$loggingInterceptorVersion",
coroutinesCore : "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesCoreVersion"
]
domainDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion",
coroutinesCore : "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesCoreVersion",
koinAndroid : "org.koin:koin-android:$koinVersion",
koinLifeCycleScope : "org.koin:koin-android-scope:$koinVersion",
koinAndroidViewModel: "org.koin:koin-androidx-viewmodel:$koinVersion"
]
}