initial dependency updates

This commit is contained in:
Daniel Yrovas 2024-06-06 14:48:42 +10:00
parent fbfaf9be00
commit 808a80f2ba
2 changed files with 62 additions and 23 deletions

View file

@ -1,10 +1,17 @@
[versions]
agp = "8.2.0"
app-versionID = "org.yrovas.finance"
app-versionCode = "1"
app-versionName = "1.0.0"
app-javaVersion = "VERSION_19"
android-kotlinJVMTarget = "JVM_19"
android-compileSdk = "34"
android-minSdk = "24"
android-targetSdk = "34"
android-minSdk = "24"
agp = "8.3.2"
androidx-activityCompose = "1.9.0"
androidx-appcompat = "1.6.1"
androidx-appcompat = "1.7.0"
androidx-constraintlayout = "2.1.4"
androidx-core-ktx = "1.13.1"
androidx-espresso-core = "3.5.1"
@ -13,6 +20,11 @@ androidx-test-junit = "1.1.5"
compose-plugin = "1.6.10"
junit = "4.13.2"
kotlin = "2.0.0"
sqldelight = "2.0.2"
# ktor = "2.3.10"
kotlinxDatetime = "0.5.0"
ksp = "2.0.0-1.0.22"
kotlinxSerializationJson = "1.6.3"
[libraries]
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
@ -25,10 +37,14 @@ androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version
androidx-material = { group = "com.google.android.material", name = "material", version.ref = "androidx-material" }
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "androidx-constraintlayout" }
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activityCompose" }
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinxSerializationJson" }
[plugins]
androidApplication = { id = "com.android.application", version.ref = "agp" }
androidLibrary = { id = "com.android.library", version.ref = "agp" }
jetbrainsCompose = { id = "org.jetbrains.compose", version.ref = "compose-plugin" }
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", 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" }
sqldelight = { id = "app.cash.sqldelight", version.ref = "sqldelight" }