|
@@ -1,6 +1,7 @@
|
|
[versions]
|
|
[versions]
|
|
agp = "8.9.3"
|
|
agp = "8.9.3"
|
|
kotlin = "2.1.21"
|
|
kotlin = "2.1.21"
|
|
|
|
+serializationJson = "1.7.3"
|
|
coreKtx = "1.16.0"
|
|
coreKtx = "1.16.0"
|
|
junit = "4.13.2"
|
|
junit = "4.13.2"
|
|
junitVersion = "1.2.1"
|
|
junitVersion = "1.2.1"
|
|
@@ -8,9 +9,12 @@ espressoCore = "3.6.1"
|
|
lifecycleRuntimeKtx = "2.9.1"
|
|
lifecycleRuntimeKtx = "2.9.1"
|
|
activityCompose = "1.10.1"
|
|
activityCompose = "1.10.1"
|
|
composeBom = "2025.06.00"
|
|
composeBom = "2025.06.00"
|
|
|
|
+appcompat = "1.7.1"
|
|
|
|
+
|
|
|
|
|
|
[libraries]
|
|
[libraries]
|
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
|
|
+androidx-navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref = "navigationCompose" }
|
|
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
|
junit = { group = "junit", name = "junit", version.ref = "junit" }
|
|
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
|
|
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
|
|
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
|
|
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
|
|
@@ -24,9 +28,14 @@ androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-toolin
|
|
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
|
|
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
|
|
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
|
|
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
|
|
androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
|
|
androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
|
|
|
|
+androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
|
|
|
|
+
|
|
|
|
+serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "serializationJson" }
|
|
|
|
|
|
[plugins]
|
|
[plugins]
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
|
|
+android-library = { id = "com.android.library", version.ref = "agp" }
|
|
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", 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" }
|
|
|
|
|