89 lines
4.3 KiB
TOML
89 lines
4.3 KiB
TOML
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
||
|
|
[versions]
|
||
|
|
agp = "8.7.3"
|
||
|
|
kotlin = "2.1.0"
|
||
|
|
ksp = "2.1.0-1.0.29"
|
||
|
|
|
||
|
|
# AndroidX
|
||
|
|
core-ktx = "1.15.0"
|
||
|
|
lifecycle = "2.8.7"
|
||
|
|
activity-compose = "1.9.3"
|
||
|
|
navigation-compose = "2.8.5"
|
||
|
|
datastore = "1.1.1"
|
||
|
|
security-crypto = "1.1.0-alpha06"
|
||
|
|
|
||
|
|
# Compose
|
||
|
|
compose-bom = "2024.12.01"
|
||
|
|
|
||
|
|
# Hilt
|
||
|
|
hilt = "2.53.1"
|
||
|
|
hilt-navigation-compose = "1.2.0"
|
||
|
|
|
||
|
|
# Ktor
|
||
|
|
ktor = "3.0.3"
|
||
|
|
|
||
|
|
# SQLDelight
|
||
|
|
sqldelight = "2.0.2"
|
||
|
|
|
||
|
|
# Testing
|
||
|
|
junit = "4.13.2"
|
||
|
|
mockk = "1.13.13"
|
||
|
|
turbine = "1.2.0"
|
||
|
|
kotlinx-coroutines-test = "1.9.0"
|
||
|
|
|
||
|
|
# Serialization
|
||
|
|
kotlinx-serialization = "1.7.3"
|
||
|
|
|
||
|
|
[libraries]
|
||
|
|
# AndroidX
|
||
|
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" }
|
||
|
|
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle" }
|
||
|
|
androidx-lifecycle-viewmodel-compose = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-compose", version.ref = "lifecycle" }
|
||
|
|
androidx-lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lifecycle" }
|
||
|
|
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activity-compose" }
|
||
|
|
androidx-navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigation-compose" }
|
||
|
|
androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "datastore" }
|
||
|
|
androidx-security-crypto = { group = "androidx.security", name = "security-crypto", version.ref = "security-crypto" }
|
||
|
|
|
||
|
|
# Compose BOM
|
||
|
|
compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "compose-bom" }
|
||
|
|
compose-ui = { group = "androidx.compose.ui", name = "ui" }
|
||
|
|
compose-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
|
||
|
|
compose-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
|
||
|
|
compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
|
||
|
|
compose-material3 = { group = "androidx.compose.material3", name = "material3" }
|
||
|
|
compose-material-icons-extended = { group = "androidx.compose.material", name = "material-icons-extended" }
|
||
|
|
|
||
|
|
# Hilt
|
||
|
|
hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" }
|
||
|
|
hilt-compiler = { group = "com.google.dagger", name = "hilt-compiler", version.ref = "hilt" }
|
||
|
|
hilt-navigation-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hilt-navigation-compose" }
|
||
|
|
|
||
|
|
# Ktor
|
||
|
|
ktor-client-core = { group = "io.ktor", name = "ktor-client-core", version.ref = "ktor" }
|
||
|
|
ktor-client-okhttp = { group = "io.ktor", name = "ktor-client-okhttp", version.ref = "ktor" }
|
||
|
|
ktor-client-content-negotiation = { group = "io.ktor", name = "ktor-client-content-negotiation", version.ref = "ktor" }
|
||
|
|
ktor-serialization-kotlinx-json = { group = "io.ktor", name = "ktor-serialization-kotlinx-json", version.ref = "ktor" }
|
||
|
|
ktor-client-mock = { group = "io.ktor", name = "ktor-client-mock", version.ref = "ktor" }
|
||
|
|
|
||
|
|
# SQLDelight
|
||
|
|
sqldelight-android-driver = { group = "app.cash.sqldelight", name = "android-driver", version.ref = "sqldelight" }
|
||
|
|
sqldelight-coroutines = { group = "app.cash.sqldelight", name = "coroutines-extensions", version.ref = "sqldelight" }
|
||
|
|
|
||
|
|
# Serialization
|
||
|
|
kotlinx-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "kotlinx-serialization" }
|
||
|
|
|
||
|
|
# Testing
|
||
|
|
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
||
|
|
mockk = { group = "io.mockk", name = "mockk", version.ref = "mockk" }
|
||
|
|
turbine = { group = "app.cash.turbine", name = "turbine", version.ref = "turbine" }
|
||
|
|
kotlinx-coroutines-test = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-test", version.ref = "kotlinx-coroutines-test" }
|
||
|
|
|
||
|
|
[plugins]
|
||
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
||
|
|
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
||
|
|
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
||
|
|
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
|
||
|
|
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
|
||
|
|
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
|
||
|
|
sqldelight = { id = "app.cash.sqldelight", version.ref = "sqldelight" }
|