78 lines
3.2 KiB
TOML
78 lines
3.2 KiB
TOML
[versions]
|
|
# Core
|
|
agp = "8.7.3"
|
|
kotlin = "2.2.0"
|
|
ksp = "2.2.0-2.0.2"
|
|
|
|
# Android
|
|
android-compileSdk = "35"
|
|
android-minSdk = "26"
|
|
android-targetSdk = "35"
|
|
|
|
# Compose & UI
|
|
compose-multiplatform = "1.10.0"
|
|
|
|
# AndroidX - Core
|
|
androidx-activity = "1.10.1"
|
|
androidx-lifecycle = "2.9.1"
|
|
androidx-navigation = "2.9.0-beta03"
|
|
|
|
# Database
|
|
room = "2.7.2"
|
|
sqlite-bundled = "2.5.2"
|
|
|
|
# DI
|
|
koin = "4.1.0"
|
|
|
|
# Coroutines
|
|
kotlinx-coroutines = "1.10.2"
|
|
|
|
# Image Loading
|
|
coil = "3.3.0"
|
|
ktor = "3.1.3"
|
|
|
|
[libraries]
|
|
# Kotlin
|
|
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
|
|
|
|
# Coroutines
|
|
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" }
|
|
|
|
# Compose
|
|
compose-runtime = { module = "org.jetbrains.compose.runtime:runtime", version.ref = "compose-multiplatform" }
|
|
compose-foundation = { module = "org.jetbrains.compose.foundation:foundation", version.ref = "compose-multiplatform" }
|
|
compose-ui = { module = "org.jetbrains.compose.ui:ui", version.ref = "compose-multiplatform" }
|
|
compose-ui-tooling = { module = "org.jetbrains.compose.ui:ui-tooling", version.ref = "compose-multiplatform" }
|
|
compose-ui-tooling-preview = { module = "org.jetbrains.compose.ui:ui-tooling-preview", version.ref = "compose-multiplatform" }
|
|
|
|
# Database
|
|
room-runtime = { module = "androidx.room:room-runtime", version.ref = "room" }
|
|
room-compiler = { module = "androidx.room:room-compiler", version.ref = "room" }
|
|
sqlite-bundled = { module = "androidx.sqlite:sqlite-bundled", version.ref = "sqlite-bundled" }
|
|
|
|
# DI
|
|
koin-core = { module = "io.insert-koin:koin-core", version.ref = "koin" }
|
|
koin-android = { module = "io.insert-koin:koin-android", version.ref = "koin" }
|
|
koin-compose = { module = "io.insert-koin:koin-compose", version.ref = "koin" }
|
|
koin-compose-viewmodel = { module = "io.insert-koin:koin-compose-viewmodel", version.ref = "koin" }
|
|
|
|
# AndroidX
|
|
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activity" }
|
|
androidx-lifecycle-runtime-compose = { module = "org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose", version.ref = "androidx-lifecycle" }
|
|
androidx-lifecycle-viewmodel-compose = { module = "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "androidx-lifecycle" }
|
|
androidx-navigation-compose = { module = "org.jetbrains.androidx.navigation:navigation-compose", version.ref = "androidx-navigation" }
|
|
|
|
# Image Loading
|
|
coil-compose = { module = "io.coil-kt.coil3:coil-compose", version.ref = "coil" }
|
|
coil-network-ktor3 = { module = "io.coil-kt.coil3:coil-network-ktor3", version.ref = "coil" }
|
|
ktor-client-okhttp = { module = "io.ktor:ktor-client-okhttp", version.ref = "ktor" }
|
|
|
|
[plugins]
|
|
androidApplication = { id = "com.android.application", version.ref = "agp" }
|
|
composeMultiplatform = { id = "org.jetbrains.compose", version.ref = "compose-multiplatform" }
|
|
composeCompiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
|
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
|
|
kotlinSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
|
|
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
|
|
room = { id = "androidx.room", version.ref = "room" }
|