-
Notifications
You must be signed in to change notification settings - Fork 0
/
libs.versions.toml
230 lines (197 loc) · 11.3 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
[versions]
## SDK
compileSdk = "35"
minSdk = "23"
## Release
major = "1"
minor = "0"
hotfix = "0"
versionCode = "1"
## GradlePlugins
# https://developer.android.com/build/releases/gradle-plugin
androidStudioGradlePlugin = "8.7.3"
#https://github.com/google/secrets-gradle-plugin#secrets-gradle-plugin-for-android
secretsGradlePlugin = "2.0.1"
## Kotlin & Compose compiler
# https://github.com/JetBrains/kotlin
# https://kotlinlang.org/api/latest/jvm/stdlib/
# https://d.android.com/r/studio-ui/compose-compiler
kotlin = "2.1.0"
# https://github.com/Kotlin/kotlinx.serialization
kotlinSerializationJson = "1.7.3"
## Coroutine
# https://github.com/Kotlin/kotlinx.coroutines
coroutines = "1.10.1"
# https://github.com/cashapp/turbine
coroutines-turbine = "1.0.0"
## KSP
# https://github.com/google/ksp
ksp = "2.1.0-1.0.29"
## Android
android-material = "1.12.0"
## AndroidX
# https://developer.android.com/jetpack/androidx/releases/annotation
androidx-annotation = "1.9.1"
# https://developer.android.com/jetpack/androidx/releases/core
androidx-core = "1.15.0"
# https://developer.android.com/jetpack/androidx/releases/appcompat
androidx-appCompat = "1.7.0"
# https://developer.android.com/jetpack/androidx/releases/activity
androidx-activity = "1.9.3"
# https://developer.android.com/jetpack/androidx/releases/fragment
androidx-fragment = "1.8.5"
# https://developer.android.com/jetpack/androidx/releases/lifecycle
androidx-lifecycle = "2.8.7"
# https://developer.android.com/jetpack/androidx/releases/recyclerview
androidx-recyclerView = "1.3.2"
# https://developer.android.com/jetpack/androidx/releases/constraintlayout
androidx-constraintLayout = "2.2.0"
# https://github.com/google/dagger/releases
dagger = "2.54"
# https://developer.android.com/jetpack/androidx/releases/hilt
androidx-hilt-compose = "1.2.0"
# https://developer.android.com/jetpack/androidx/releases/room
androidx-room = "2.6.1"
# https://developer.android.com/jetpack/androidx/releases/navigation
androidx-viewsNavigation = "2.8.5"
# https://developer.android.com/develop/ui/views/launch/splash-screen
androidx-splashScreen = "1.0.1"
# https://developer.android.com/jetpack/androidx/releases/work
androidx-workerManager = "2.10.0" # Kotlin + coroutines
## Compose
# https://developer.android.com/develop/ui/compose/bom/bom-mapping
compose-bom = "2024.12.01"
# https://developer.android.com/jetpack/androidx/releases/compose
compose = "1.7.6"
# https://developer.android.com/jetpack/androidx/releases/compose-kotlin
compose-compilerVersion = "1.5.3"
# https://developer.android.com/jetpack/androidx/releases/compose-material
compose-material = "1.7.6"
# https://developer.android.com/jetpack/androidx/releases/compose-material3
compose-material3 = "1.3.1"
# https://developer.android.com/jetpack/androidx/releases/navigation
compose-navigation = "2.8.5"
## Compose & Google
# https://github.com/googlemaps/android-maps-compose#maps-compose-
compose-google-maps = "3.1.1"
## Google
google-services-gms = "4.4.2"
## Network
# https://square.github.io/okhttp/
network-okhttp = "4.12.0"
# https://github.com/square/retrofit
network-retrofit = "2.11.0"
# https://github.com/JakeWharton/retrofit2-kotlinx-serialization-converter
network-retrofit-kotlinxSerializationConvert = "1.0.0"
## Test
# https://developer.android.com/jetpack/androidx/releases/test
test-androidx-core = "1.6.1"
test-androidx-runner = "1.6.2"
test-androidx-junit = "1.2.1"
# https://github.com/square/okhttp/tree/master/mockwebserver
test-mock-webserver = "4.12.0"
# https://github.com/mockito/mockito
test-mockito = "5.5.0"
# https://github.com/mockito/mockito-kotlin
test-mockito-kotlin = "5.1.0"
junit5 = "5.10.2"
junit = "4.13.2"
espresso-core = "3.6.1"
## Firebase
firebaseBom = "33.7.0"
## Third party
# https://github.com/taehwandev/ComposeKeyboardState
compose-keyboardState = "1.6.0-alpha06"
#compose-keyboardState = "1.5.0"
# https://github.com/bumptech/glide
glideAnnotationProcessor = "4.16.0"
glide = "4.16.0"
[libraries]
## Kotlin
kotlin = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }
kotlin-serializationJson = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinSerializationJson" }
## Coroutines
coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" }
coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "coroutines" }
## Android
android-material = { module = "com.google.android.material:material", version.ref = "android-material" }
## AndroidX
androidx-annotation = { module = "androidx.annotation:annotation", version.ref = "androidx-annotation" }
androidx-core = { module = "androidx.core:core-ktx", version.ref = "androidx-core" }
androidx-appCompat = { module = "androidx.appcompat:appcompat", version.ref = "androidx-appCompat" }
androidx-activity = { module = "androidx.activity:activity-ktx", version.ref = "androidx-activity" }
#androidx-fragment = { module = "androidx.fragment:fragment-ktx", version.ref = "androidx-fragment" }
androidx-lifecycle-viewModel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version.ref = "androidx-lifecycle" }
androidx-lifecycleRuntimeCompose = { module = "androidx.lifecycle:lifecycle-runtime-compose", version.ref = "androidx-lifecycle" }
#androidx-recyclerView = { module = "androidx.recyclerview:recyclerview", version.ref = "androidx-recyclerView" }
#androidx-constraintLayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "androidx-constraintLayout" }
#androidx-viewpager2 = { group = "androidx.viewpager2", name = "viewpager2", version = "1.0.0" }
androidx-room = { module = "androidx.room:room-ktx", version.ref = "androidx-room" }
androidx-room-runtime = { module = "androidx.room:room-runtime", version.ref = "androidx-room" }
androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "androidx-room" }
androidx-hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "dagger" }
androidx-hilt-androidCompiler = { module = "com.google.dagger:hilt-android-compiler", version.ref = "dagger" }
androidx-hilt-composeNavigation = { module = "androidx.hilt:hilt-navigation-compose", version.ref = "androidx-hilt-compose" }
#androidx-navigation-fragment = { module = "androidx.navigation:navigation-fragment-ktx", version.ref = "androidx-viewsNavigation" }
#androidx-navigation-ui = { module = "androidx.navigation:navigation-ui-ktx", version.ref = "androidx-viewsNavigation" }
androidx-splashScreen = { module = "androidx.core:core-splashscreen", version.ref = "androidx-splashScreen" }
androidx-workerManager = { module = "androidx.work:work-runtime-ktx", version.ref = "androidx-workerManager" }
## Compose
compose-bom = { module = "androidx.compose:compose-bom", version.ref = "compose-bom" }
compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose" }
compose-uiTooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }
compose-uiToolingPreview = { module = "androidx.compose.ui:ui-tooling-preview" }
compose-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "compose" }
compose-runtime = { module = "androidx.compose.runtime:runtime", version.ref = "compose" }
compose-navigation = { module = "androidx.navigation:navigation-compose", version.ref = "compose-navigation" }
compose-material = { module = "androidx.compose.material:material", version.ref = "compose-material" }
compose-material3 = { module = "androidx.compose.material3:material3", version.ref = "compose-material3" }
compose-activity = { module = "androidx.activity:activity-compose", version.ref = "androidx-activity" }
## Network
network-okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "network-okhttp" }
network-okhttp-logging = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "network-okhttp" }
network-retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "network-retrofit" }
network-retrofit-converter-gson = { module = "com.squareup.retrofit2:converter-gson", version.ref = "network-retrofit" }
network-retrofit-converter-kotlinxSerialization = { module = "com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter", version.ref = "network-retrofit-kotlinxSerializationConvert" }
## Google Service
## Firebase
firebase-bom = { module = "com.google.firebase:firebase-bom", version.ref = "firebaseBom" }
firebase-analytics = { module = "com.google.firebase:firebase-analytics-ktx" }
firebase-fireStore = { module = "com.google.firebase:firebase-firestore-ktx" }
firebase-storage = { module = "com.google.firebase:firebase-storage-ktx" }
firebase-remoteConfig = { module = "com.google.firebase:firebase-config-ktx" }
## Third party
compose-keyboardState = { module = "tech.thdev:extensions-compose-keyboard-state", version.ref = "compose-keyboardState" }
glideAnnotationProcessor = { module = "com.github.bumptech.glide:compiler", version.ref = "glideAnnotationProcessor" }
glide = { module = "com.github.bumptech.glide:glide", version.ref = "glide" }
## Test
test-androidx-core = { module = "androidx.test:core", version.ref = "test-androidx-core" }
test-androidx-runner = { module = "androidx.test:runner", version.ref = "test-androidx-runner" }
test-androidx-junit = { module = "androidx.test.ext:junit", version.ref = "test-androidx-junit" }
## Test junit
test-junit5 = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit5" }
test-junit5-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit5" }
## Test mokito
test-mockito = { module = "org.mockito:mockito-core", version.ref = "test-mockito" }
test-mockito-kotlin = { module = "org.mockito.kotlin:mockito-kotlin", version.ref = "test-mockito-kotlin" }
test-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines" }
test-coroutines-turbine = { module = "app.cash.turbine:turbine", version.ref = "coroutines-turbine" }
## Test mock server
test-mockWebserver = { module = "com.squareup.okhttp3:mockwebserver", version.ref = "test-mock-webserver" }
test-junit = { module = "junit:junit", version.ref = "junit" }
test-espressoCore = { module = "androidx.test.espresso:espresso-core", version.ref = "espresso-core" }
# Dependencies of the included build-logic
kotlin-gradlePlugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
android-gradlePlugin = { module = "com.android.tools.build:gradle", version.ref = "androidStudioGradlePlugin" }
compose-compilerGradlePlugin = { module = "org.jetbrains.kotlin:compose-compiler-gradle-plugin", version.ref = "kotlin" }
[plugins]
androidApplication = { id = "com.android.application", version.ref = "androidStudioGradlePlugin" }
androidLibrary = { id = "com.android.library", version.ref = "androidStudioGradlePlugin" }
hilt = { id = "com.google.dagger.hilt.android", version.ref = "dagger" }
room = { id = "androidx.room", version.ref = "androidx-room" }
kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
kotlinJvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
kotlinSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
composeCompiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
googleServicesGms = { id = "com.google.gms.google-services", version.ref = "google-services-gms" }