-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibs.versions.toml
24 lines (18 loc) · 1.01 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
[versions]
kotlin = "1.8.10"
androidGradle = "7.4.2"
androidLifecycleVersion = "2.6.2"
kotlinxCoroutines = "1.7.3"
mvm = "0.0.8"
[libraries]
# android
lifecycleKtx = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "androidLifecycleVersion" }
androidViewModel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version.ref = "androidLifecycleVersion" }
composeFoundation = { module = "androidx.compose.foundation:foundation" }
kotlinxCoroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinxCoroutines" }
kotlinxCoroutinesTest = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinxCoroutines" }
# https://developer.android.com/jetpack/compose/bom/bom-mapping
composeBOM = "androidx.compose:compose-bom:2023.10.01"
# gradle plugins
kotlinGradlePlugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
androidGradlePlugin = { module = "com.android.tools.build:gradle", version.ref = "androidGradle" }