-
Notifications
You must be signed in to change notification settings - Fork 112
/
dependencies.gradle
114 lines (102 loc) · 5.22 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
ext {
// Kotlin
kotlinVersion = '1.3.72'
// Android Core
compileSdk = 29
targetSdk = 29
minSdk = 21
buildTools = "29.0.2"
// App Versioning
versionCodeMajor = 2
versionCodeMinor = 1
versionCodePatch = 4
versionName = "$versionCodeMajor.$versionCodeMinor.$versionCodePatch"
// Dependencies Version - Presentation
appcompatVersion = '1.1.0'
androidxCoreKtxVersion = '1.1.0'
constraintLayoutVersion = '1.1.3'
supportV4Version = '1.0.0'
navVersion = '2.1.0'
materialVersion = '1.1.0-beta02'
analyticsVersion = '17.4.3'
fragmentKtxVersion = '1.1.0'
leakCanaryVersion = '2.0'
koinVersion = '2.1.5'
crashlyticsVersion = '17.0.1'
lifecycleExtensionsVersion = '2.1.0'
recyclerviewAnimationVersion = '3.0.0'
aboutLibsVersion = '8.0.0-rc01'
stethoVersion = '1.5.1'
kielVersion = '1.2.1'
// Data
retrofitVersion = '2.7.0'
moshiConverterVersion = '2.7.0'
loggingInterceptorVersion = '4.2.1'
roomVersion = '2.2.5'
// Domain
coroutinesCoreVersion = '1.3.3'
// Testing
mockitoVersion = '3.2.4'
junitVersion = '4.12'
espressoVersion = '3.2.0'
androidxJunitVersion = '1.1.1'
truthVersion = '1.0'
mockitoInlineVersion = '2.13.0'
mockWebServerVersion = '4.2.1'
robolectricVersion = '4.3'
androidxTestCoreVersion = '1.0.0'
runnerVersion = '1.2.0'
rulesVersion = '1.2.0'
archComponentTestVersion = '2.1.0'
// App/Presentation Layer
appDependencies = [
appCompat : "androidx.appcompat:appcompat:$appcompatVersion",
androidxKtx : "androidx.core:core-ktx:$androidxCoreKtxVersion",
constraintLayout : "androidx.constraintlayout:constraintlayout:$constraintLayoutVersion",
supportV4 : "androidx.legacy:legacy-support-v4:$supportV4Version",
leakCanary : "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion",
material : "com.google.android.material:material:$materialVersion",
firebaseAnalytics : "com.google.firebase:firebase-analytics-ktx:$analyticsVersion",
fragmentKtx : "androidx.fragment:fragment-ktx:$fragmentKtxVersion",
firebaseCrashlytics : "com.google.firebase:firebase-crashlytics:$crashlyticsVersion",
lifecycleExtensions : "androidx.lifecycle:lifecycle-extensions:$lifecycleExtensionsVersion",
recyclerviewAnimations: "jp.wasabeef:recyclerview-animators:$recyclerviewAnimationVersion",
aboutLibraryCore : "com.mikepenz:aboutlibraries-core:$aboutLibsVersion",
aboutLibraryUi : "com.mikepenz:aboutlibraries:$aboutLibsVersion",
koinAndroid : "org.koin:koin-android:$koinVersion",
koinLifeCycleScope : "org.koin:koin-android-scope:$koinVersion",
koinAndroidViewModel : "org.koin:koin-androidx-viewmodel:$koinVersion",
stetho : "com.facebook.stetho:stetho:$stethoVersion",
kiel : "me.ibrahimyilmaz:kiel:$kielVersion"
]
dataDependencies = [
retrofit : "com.squareup.retrofit2:retrofit:$retrofitVersion",
moshiConverter : "com.squareup.retrofit2:converter-moshi:$moshiConverterVersion",
loggingInterceptor: "com.squareup.okhttp3:logging-interceptor:$loggingInterceptorVersion",
roomRuntime : "androidx.room:room-runtime:$roomVersion",
roomCompiler : "androidx.room:room-compiler:$roomVersion",
roomKtx : "androidx.room:room-ktx:$roomVersion"
]
domainDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion",
coroutinesCore: "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesCoreVersion"
]
testDependencies = [
junit : "junit:junit:$junitVersion",
androidxJunit : "androidx.test.ext:junit:$androidxJunitVersion",
espressoCore : "androidx.test.espresso:espresso-core:$espressoVersion",
googleTruth : "com.google.truth:truth:$truthVersion",
mockWebServer : "com.squareup.okhttp3:mockwebserver:$mockWebServerVersion",
robolectric : "org.robolectric:robolectric:$robolectricVersion",
androidxCoreTest : "androidx.test:core:$androidxTestCoreVersion",
runner : "androidx.test:runner:$runnerVersion",
rules : "androidx.test:rules:$rulesVersion",
espressoIntents : "androidx.test.espresso:espresso-intents:$espressoVersion",
espressoContrib : "androidx.test.espresso:espresso-contrib:$espressoVersion",
espressoIdlingResource: "androidx.test.espresso:espresso-idling-resource:$espressoVersion",
archComponentTest : "androidx.arch.core:core-testing:$archComponentTestVersion",
coroutinesTest : "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesCoreVersion",
koinTest : "org.koin:koin-test:$koinVersion",
roomTest : "androidx.room:room-testing:$roomVersion"
]
}