libs.versions.toml 4.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. [versions]
  2. agp = "8.8.1"
  3. kotlin = "2.0.21"
  4. ksp = "2.0.21-1.0.26"
  5. coreKtx = "1.15.0"
  6. junit = "4.13.2"
  7. junitVersion = "1.2.1"
  8. espressoCore = "3.6.1"
  9. lifecycleRuntimeKtx = "2.8.7"
  10. activityCompose = "1.10.0"
  11. composeBom = "2025.02.00"
  12. hilt = "2.49"
  13. hiltNavigation = "1.2.0"
  14. navigation = "2.8.5"
  15. coil = "2.6.0"
  16. constraintLayout = "1.1.0"
  17. paging = "3.3.2"
  18. serializationJson = "1.7.3"
  19. coroutines = "1.9.0"
  20. exif = "1.3.7"
  21. room = "2.6.1"
  22. okhttp = "4.12.0"
  23. work = "2.10.0"
  24. firebaseBom = "33.2.0"
  25. [libraries]
  26. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
  27. junit = { group = "junit", name = "junit", version.ref = "junit" }
  28. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
  29. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
  30. androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
  31. androidx-lifecycle-viewmodel-compose = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-compose", version.ref = "lifecycleRuntimeKtx" }
  32. androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
  33. androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
  34. androidx-ui = { group = "androidx.compose.ui", name = "ui" }
  35. androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
  36. androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
  37. androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
  38. androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
  39. androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
  40. androidx-material-icons = { group = "androidx.compose.material", name = "material-icons-extended" }
  41. androidx-runtime = { group = "androidx.compose.runtime", name = "runtime" }
  42. androidx-runtime-livedata = { group = "androidx.compose.runtime", name = "runtime-livedata" }
  43. androidx-navigation = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigation" }
  44. coil = { group = "io.coil-kt", name = "coil-compose", version.ref = "coil" }
  45. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout-compose", version.ref = "constraintLayout" }
  46. androidx-paging = { group = "androidx.paging", name = "paging-compose", version.ref = "paging" }
  47. androidx-paging-common = { group = "androidx.paging", name = "paging-common-ktx", version.ref = "paging" }
  48. org-jetbrains-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "serializationJson" }
  49. org-jetbrains-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "coroutines" }
  50. org-jetbrains-coroutines-android = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-android", version.ref = "coroutines" }
  51. com-google-hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" }
  52. com-google-hilt-android-compiler = { group = "com.google.dagger", name = "hilt-android-compiler", version.ref = "hilt" }
  53. androidx-hilt-navigation = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hiltNavigation" }
  54. androidx-exifinterface = { group = "androidx.exifinterface", name = "exifinterface", version.ref = "exif" }
  55. androidx-room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" }
  56. androidx-room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" }
  57. androidx-room = { group = "androidx.room", name = "room-ktx", version.ref = "room" }
  58. androidx-room-paging = { group = "androidx.room", name = "room-paging", version.ref = "room" }
  59. okhttp = { group = "com.squareup.okhttp3", name = "okhttp", version.ref = "okhttp" }
  60. androidx-work = { group = "androidx.work", name = "work-runtime-ktx", version.ref = "work" }
  61. firebase-bom = { group = "com.google.firebase", name = "firebase-bom", version.ref = "firebaseBom" }
  62. firebase-messaging = { group = "com.google.firebase", name = "firebase-messaging-ktx" }
  63. firebase-analytics = { group = "com.google.firebase", name = "firebase-analytics" }
  64. [plugins]
  65. androidApplication = { id = "com.android.application", version.ref = "agp" }
  66. jetbrainsKotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
  67. androidLibrary = { id = "com.android.library", version.ref = "agp" }
  68. jetbrainsKotlinPluginSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
  69. googleDaggerHiltAndroid = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
  70. googleDevtoolsKsp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
  71. kotlinCompose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }