libs.versions.toml 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. [versions]
  2. androidxComposeBom = "2023.10.01"
  3. androidGradlePlugin = "8.2.2"
  4. ktx = "1.12.0"
  5. compose = "1.8.2"
  6. immutable = "0.3.7"
  7. location = "21.1.0"
  8. hilt = "2.50"
  9. hilt-navigation = "1.1.0"
  10. navigationCompose = "2.7.6"
  11. lyfecyleCompose = "2.7.0"
  12. retrofit = "2.9.0"
  13. junit = "4.13.2"
  14. junittest = "1.1.5"
  15. espresso = "3.5.1"
  16. coroutines = "1.7.3"
  17. room = "2.6.1"
  18. material = "1.5.4"
  19. material3 = "1.1.2"
  20. org-jetbrains-kotlin-android = "1.9.22"
  21. appcompat = "1.6.1"
  22. com-google-android-material-material = "1.11.0"
  23. ksp = "1.9.22-1.0.17"
  24. animationGraphicsAndroid = "1.5.4"
  25. play-services-maps = "18.2.0"
  26. maps-compose = "4.3.0"
  27. secretsGradlePlugin = "2.0.1"
  28. [libraries]
  29. androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "androidxComposeBom" }
  30. androidx-compose-ui = { group = "androidx.compose.ui", name = "ui" }
  31. androidx-compose-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
  32. androidx-compose-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
  33. androidx-compose-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
  34. androidx-compose-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
  35. androidx-compose-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
  36. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "ktx" }
  37. androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lyfecyleCompose" }
  38. androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "compose" }
  39. androidx-navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref = "navigationCompose" }
  40. androidx-lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lyfecyleCompose" }
  41. android-compose-material = { group = "androidx.compose.material", name = "material", version.ref = "material" }
  42. android-compose-material3 = { group = "androidx.compose.material3", name = "material3", version.ref = "material3" }
  43. kotlinx-collections-immutable = { group = "org.jetbrains.kotlinx", name = "kotlinx-collections-immutable", version.ref = "immutable" }
  44. android-play-services-location = { group = "com.google.android.gms", name = "play-services-location", version.ref = "location" }
  45. # Hilt
  46. hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" }
  47. hilt-android-compiler = { group = "com.google.dagger", name = "hilt-android-compiler", version.ref = "hilt" }
  48. hilt-navigation-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hilt-navigation" }
  49. # Retrofit
  50. retrofit-retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit" }
  51. retrofit-converter-moshi = { group = "com.squareup.retrofit2", name = "converter-moshi", version.ref = "retrofit" }
  52. # Room
  53. room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" }
  54. room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" }
  55. play-services-maps = { group = "com.google.android.gms", name = "play-services-maps", version.ref = "play-services-maps" }
  56. maps-compose = { group = "com.google.maps.android", name = "maps-compose", version.ref = "maps-compose" }
  57. # Test
  58. junit-junit = { group = "junit", name = "junit", version.ref = "junit" }
  59. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junittest" }
  60. espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso" }
  61. coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines" }
  62. appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  63. material = { group = "com.google.android.material", name = "material", version.ref = "com-google-android-material-material" }
  64. androidx-animation-graphics-android = { group = "androidx.compose.animation", name = "animation-graphics-android", version.ref = "animationGraphicsAndroid" }
  65. [plugins]
  66. android-application = { id = "com.android.application", version.ref = "androidGradlePlugin" }
  67. android-library = { id = "com.android.library", version.ref = "androidGradlePlugin" }
  68. org-jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "org-jetbrains-kotlin-android" }
  69. com-google-devtools-ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
  70. dagger-hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
  71. secrets-gradle-plugin = { id = "com.google.android.libraries.mapsplatform.secrets-gradle-plugin", version.ref = "secretsGradlePlugin" }