-
-
Notifications
You must be signed in to change notification settings - Fork 450
/
Copy pathlibs.versions.toml
257 lines (226 loc) · 10.4 KB
/
libs.versions.toml
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
[versions]
# https://kotlinlang.org/docs/releases.html#release-details
kotlin = "1.9.22"
# https://github.com/Kotlin/kotlinx.coroutines
kotlin-coroutines = "1.7.3"
# https://github.com/FasterXML/jackson
jackson = "2.12.3"
# https://greenrobot.org/greendao/
greendao = "3.3.0"
# https://github.com/googlecodelabs/android-hilt
hilt = "2.47"
dagger = "2.47"
# https://developer.android.com/studio/releases/gradle-plugin
android-gradle = "7.4.2"
# https://developer.android.com/jetpack/androidx/releases/lifecycle
android-lifecycle = "2.6.1"
# https://github.com/greenrobot/EventBus
eventbus = "3.3.1"
# https://junit.org/junit5/
junit5 = "5.9.3"
androidx-hilt = "1.0.0"
org-mockito = "5.10.0"
mockk = "1.13.12"
com-squareup-retrofit2 = "2.6.4"
androidx-test-espresso = "3.4.0"
truth = "1.1.3"
ui = "1.4.3"
core-splashscreen = "1.0.1"
[libraries]
# Gradle Plugins
# https://greenrobot.org/greendao/
androidx-ui = { module = "androidx.compose.ui:ui", version.ref = "ui" }
plugin-gradle-greendao = { module = "org.greenrobot:greendao-gradle-plugin", version.ref = "greendao" }
# https://developer.android.com/studio/releases/gradle-plugin
plugin-gradle-android = { module = "com.android.tools.build:gradle", version.ref = "android-gradle" }
# https://github.com/googlecodelabs/android-hilt
plugin-gradle-hilt = { module = "com.google.dagger:hilt-android-gradle-plugin", version.ref = "hilt" }
# https://kotlinlang.org/docs/gradle.html
plugin-gradle-kotlin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
# Coroutines
kotlin-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlin-coroutines" }
kotlin-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kotlin-coroutines" }
test-kotlin-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlin-coroutines" }
# Android KTX
android-ktx-fragment = "androidx.fragment:fragment-ktx:1.5.6"
android-ktx-activity = "androidx.activity:activity-ktx:1.7.0"
android-ktx-preference = "androidx.preference:preference-ktx:1.2.0"
android-ktx-core = "androidx.core:core-ktx:1.8.0"
# Lifecycle
android-lifecycle-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version.ref = "android-lifecycle" }
android-lifecycle-livedata = { module = "androidx.lifecycle:lifecycle-livedata-ktx", version.ref = "android-lifecycle" }
android-lifecycle-runtime = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "android-lifecycle" }
# AndroidX
androidx-appcompat = "androidx.appcompat:appcompat:1.6.1"
androidx-browser = "androidx.browser:browser:1.4.0"
androidx-concurrent = "androidx.concurrent:concurrent-futures:1.1.0"
androidx-recyclerview = "androidx.recyclerview:recyclerview:1.2.1"
androidx-cardview = "androidx.cardview:cardview:1.0.0"
androidx-annotation = "androidx.annotation:annotation:1.4.0"
androidx-constraintlayout = "androidx.constraintlayout:constraintlayout:2.1.4"
androidx-multidex = "androidx.multidex:multidex:2.0.1"
androidx-viewpager2 = "androidx.viewpager2:viewpager2:1.0.0"
androidx-startup-runtime = "androidx.startup:startup-runtime:1.1.1"
androidx-work-runtime = "androidx.work:work-runtime-ktx:2.7.1"
androidx-swiperefreshlayout = "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
androidx-core-splashscreen = { module = "androidx.core:core-splashscreen", version.ref = "core-splashscreen" }
# ML Kit
barcode-scanning = "com.google.mlkit:barcode-scanning:17.0.0"
# Hilt
hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hilt" }
hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hilt" }
# WorkManager with Hilt
androidx-hilt-work = { module = "androidx.hilt:hilt-work", version.ref = "androidx-hilt" }
androidx-hilt-compiler = { module = "androidx.hilt:hilt-compiler", version.ref = "androidx-hilt" }
# Networking
networking-retrofit-core = { module = "com.squareup.retrofit2:retrofit", version.ref = "com-squareup-retrofit2" }
networking-retrofit-converter-jackson = { module = "com.squareup.retrofit2:converter-jackson", version.ref = "com-squareup-retrofit2" }
networking-retrofit-converter-scalars = { module = "com.squareup.retrofit2:converter-scalars", version.ref = "com-squareup-retrofit2" }
networking-okhttp3-logging-interceptor = "com.squareup.okhttp3:logging-interceptor:3.12.13"
# Logging
logcat = "com.squareup.logcat:logcat:0.1"
# Apache Commons
apache-text = "org.apache.commons:commons-text:1.9"
apache-csv = "org.apache.commons:commons-csv:1.9.0"
apache-validator = "commons-validator:commons-validator:1.7"
# Serialization/Deserialization
jackson-core = { module = "com.fasterxml.jackson.core:jackson-core", version.ref = "jackson" }
jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson" }
jackson-annotations = { module = "com.fasterxml.jackson.core:jackson-annotations", version.ref = "jackson" }
jackson-kotlin = { module = "com.fasterxml.jackson.module:jackson-module-kotlin", version.ref = "jackson" }
# Database
greendao = { module = "org.greenrobot:greendao", version.ref = "greendao" }
# Event bus and index
eventbus-runtime = { module = "org.greenrobot:eventbus", version.ref = "eventbus" }
eventbus-compiler = { module = "org.greenrobot:eventbus-annotation-processor", version.ref = "eventbus" }
# Material Design
material = "com.google.android.material:material:1.6.1"
# Image Loading
picasso = "com.squareup.picasso:picasso:2.8"
# Image from gallery or camera
easyimage = "com.github.jkwiecien:EasyImage:1.4.0"
# Barcode and QR Scanner
# TODO: cannot upgrade, requires API 24 or higher
zxing-core = "com.google.zxing:core:3.5.3"
zxing-android-embedded = "com.journeyapps:zxing-android-embedded:3.6.0"
# UI Component : ImageView with Zooming
photoview = "com.github.chrisbanes:PhotoView:2.3.0"
# UI Component : Material Drawer
# https://github.com/mikepenz/MaterialDrawer/commit/3b2cb1db4c3b6afe639b0f3c21c03c1de68648a3
materialdrawer = "com.mikepenz:materialdrawer:7.0.0"
# DO NOT UPDATE : RecyclerViewCacheUtil removed, needs rework
fastadapter-commons = "com.mikepenz:fastadapter-commons:3.3.1"
# UI Component : Font Icons
iconics-core = "com.mikepenz:iconics-core:4.0.2"
google-material-typeface = "com.mikepenz:google-material-typeface:3.0.1.6.original-kotlin"
android-image-cropper = "com.github.CanHub:Android-Image-Cropper:3.1.3"
# UI Component : Chips Input
nachos = "com.github.hootsuite:nachos:1.2.0"
# Crash analytics
sentry-android = "io.sentry:sentry-android:7.3.0"
matomo = "com.github.matomo-org:matomo-sdk-android:4.1.4"
# ShowCaseView dependency
showcaseview = "com.github.mreram:showcaseview:1.0.5"
# Unit Testing
androidx-arch-core-testing = "androidx.arch.core:core-testing:2.1.0"
junit = "junit:junit:4.13.2"
robolectric = "org.robolectric:robolectric:4.10"
mockito-core = { module = "org.mockito:mockito-core", version.ref = "org-mockito" }
mockito-kotlin = "org.mockito.kotlin:mockito-kotlin:5.1.0"
mockito-junit-jupiter = { module = "org.mockito:mockito-junit-jupiter", version.ref = "org-mockito" }
mockk-core = { module = "io.mockk:mockk", version.ref = "mockk" }
mockk-agent = { module = "io.mockk:mockk-agent-jvm", version.ref = "mockk" }
truth = { module = "com.google.truth:truth", version.ref = "truth" }
truth-java8 = { module = "com.google.truth.extensions:truth-java8-extension", version.ref = "truth" }
# JUnit 5
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit5" }
junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit5" }
junit-vintage-engine = { module = "org.junit.vintage:junit-vintage-engine", version.ref = "junit5" }
orchestrator = "androidx.test:orchestrator:1.4.2"
# Hilt Testing
hilt-android-testing = { module = "com.google.dagger:hilt-android-testing", version.ref = "hilt" }
hilt-android-compiler = { module = "com.google.dagger:hilt-android-compiler", version.ref = "hilt" }
dagger = { module = "com.google.dagger:dagger", version.ref = "dagger" }
dagger-compiler = { module = "com.google.dagger:dagger-compiler", version.ref = "dagger" }
# AndroidX Test
androidx-test-runner = "androidx.test:runner:1.4.0"
androidx-test-rules = "androidx.test:rules:1.4.0"
androidx-test-ext = "androidx.test.ext:junit:1.1.5"
# Espresso
androidx-test-espresso-core = { module = "androidx.test.espresso:espresso-core", version.ref = "androidx-test-espresso" }
androidx-test-espresso-intents = { module = "androidx.test.espresso:espresso-intents", version.ref = "androidx-test-espresso" }
androidx-test-espresso-web = { module = "androidx.test.espresso:espresso-web", version.ref = "androidx-test-espresso" }
androidx-test-espresso-contrib = { module = "androidx.test.espresso:espresso-contrib", version.ref = "androidx-test-espresso" }
falcon = "com.jraska:falcon:2.2.0"
screengrab = "tools.fastlane:screengrab:2.1.1"
[bundles]
kotlin-coroutines = [
"kotlin-coroutines-android",
"kotlin-coroutines-core",
]
android-ktx = [
"android-ktx-activity",
"android-ktx-core",
"android-ktx-fragment",
"android-ktx-preference",
]
android-lifecycle = [
"android-lifecycle-livedata",
"android-lifecycle-runtime",
"android-lifecycle-viewmodel",
]
androidx = [
"androidx-annotation",
"androidx-appcompat",
"androidx-browser",
"androidx-cardview",
"androidx-concurrent",
"androidx-constraintlayout",
"androidx-multidex",
"androidx-recyclerview",
"androidx-startup-runtime",
"androidx-swiperefreshlayout",
"androidx-viewpager2",
"androidx-work-runtime",
]
networking = [
"networking-okhttp3-logging-interceptor",
"networking-retrofit-converter-jackson",
"networking-retrofit-converter-scalars",
"networking-retrofit-core",
]
apache-commons = [
"apache-csv",
"apache-text",
"apache-validator",
]
jackson = [
"jackson-annotations",
"jackson-core",
"jackson-databind",
"jackson-kotlin",
]
crash-analytics = [
"matomo",
"sentry-android",
]
testing = [
"androidx-arch-core-testing",
"junit",
"mockito-core",
"mockito-junit-jupiter",
"mockito-kotlin",
"mockk-core",
"mockk-agent",
"robolectric",
"test-kotlin-coroutines",
"truth",
"truth-java8",
]
[plugins]
resourceplaceholders = "de.timfreiheit.resourceplaceholders:0.2"
dokka = "org.jetbrains.dokka:1.7.0"
sonarqube = "org.sonarqube:5.0.0.4638"
detekt = "io.gitlab.arturbosch.detekt:1.23.1"
versions = "com.github.ben-manes.versions:0.41.0"
updates = "nl.littlerobots.version-catalog-update:0.5.1"