libs.versions.toml 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. [versions]
  2. androidGradlePlugin = "8.1.2"
  3. ktx = "1.12.0"
  4. compose = "1.8.2"
  5. immutable = "0.3.6"
  6. location = "21.0.1"
  7. hilt = "2.48.1"
  8. hilt-navigation = "1.1.0"
  9. navigationCompose = "2.7.6"
  10. lyfecyleCompose = "2.7.0-rc02"
  11. retrofit = "2.9.0"
  12. junit = "4.13.2"
  13. junittest = "1.1.5"
  14. espresso = "3.5.1"
  15. coroutines = "1.7.3"
  16. room = "2.6.1"
  17. material = "1.5.4"
  18. material3 = "1.1.2"
  19. org-jetbrains-kotlin-android = "1.9.10"
  20. appcompat = "1.6.1"
  21. com-google-android-material-material = "1.11.0"
  22. ksp = "1.9.0-1.0.12"
  23. [libraries]
  24. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "ktx" }
  25. androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lyfecyleCompose" }
  26. androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "compose" }
  27. androidx-navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref = "navigationCompose" }
  28. androidx-lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lyfecyleCompose" }
  29. android-compose-material = { group = "androidx.compose.material", name = "material", version.ref = "material" }
  30. android-compose-material3 = { group = "androidx.compose.material3", name = "material3", version.ref = "material3" }
  31. kotlinx-collections-immutable = { group = "org.jetbrains.kotlinx", name = "kotlinx-collections-immutable", version.ref = "immutable" }
  32. android-play-services-location = { group = "com.google.android.gms", name = "play-services-location", version.ref = "location" }
  33. # Hilt
  34. hilt-android-gradle-plugin = { module = "com.google.dagger:hilt-android-gradle-plugin", version.ref = "hilt" }
  35. hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" }
  36. hilt-android-compiler = { group = "com.google.dagger", name = "hilt-android-compiler", version.ref = "hilt" }
  37. hilt-navigation-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hilt-navigation" }
  38. # Retrofit
  39. retrofit-retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit" }
  40. retrofit-converter-moshi = { group = "com.squareup.retrofit2", name = "converter-moshi", version.ref = "retrofit" }
  41. # Room
  42. room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" }
  43. room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" }
  44. # Test
  45. junit-junit = { group = "junit", name = "junit", version.ref = "junit" }
  46. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junittest" }
  47. espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso" }
  48. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version = "2.1.4" }
  49. coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines" }
  50. appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  51. material = { group = "com.google.android.material", name = "material", version.ref = "com-google-android-material-material" }
  52. [plugins]
  53. android-application = { id = "com.android.application", version.ref = "androidGradlePlugin" }
  54. com-android-library = { id = "com.android.library", version.ref = "androidGradlePlugin" }
  55. org-jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "org-jetbrains-kotlin-android" }
  56. com-google-devtools-ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
  57. com-google-dagger-hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
  58. dagger-hilt = { id = "dagger.hilt.android.plugin", version.ref = "hilt" }