libs.versions.toml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [versions]
  2. androidGradlePlugin = "8.1.2"
  3. ktx = "1.12.0"
  4. compose = "1.8.0"
  5. immutable = "0.3.6"
  6. location = "21.0.1"
  7. hilt = "2.48.1"
  8. navigationCompose = "2.7.4"
  9. lyfecyleCompose = "2.7.0-alpha02"
  10. retrofit = "2.9.0"
  11. junit = "4.13.2"
  12. junittest = "1.1.5"
  13. espresso = "3.5.1"
  14. coroutines = "1.7.3"
  15. room = "2.5.2"
  16. material = "1.5.3"
  17. [libraries]
  18. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "ktx" }
  19. androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lyfecyleCompose" }
  20. androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "compose" }
  21. androidx-navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref = "navigationCompose" }
  22. androidx-lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lyfecyleCompose" }
  23. android-compose-material = { group = "androidx.compose.material", name = "material", version.ref = "material" }
  24. kotlinx-collections-immutable = { group = "org.jetbrains.kotlinx", name = "kotlinx-collections-immutable", version.ref = "immutable" }
  25. android-play-services-location = { group = "com.google.android.gms", name = "play-services-location", version.ref = "location" }
  26. # Hilt
  27. hilt-android-gradle-plugin = { module = "com.google.dagger:hilt-android-gradle-plugin", version.ref = "hilt" }
  28. hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" }
  29. hilt-android-compiler = { group = "com.google.dagger", name = "hilt-android-compiler", version.ref = "hilt" }
  30. # Retrofit
  31. retrofit-retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit" }
  32. retrofit-converter-moshi = { group = "com.squareup.retrofit2", name = "converter-moshi", version.ref = "retrofit" }
  33. # Room
  34. room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" }
  35. room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" }
  36. # Test
  37. junit-junit = { group = "junit", name = "junit", version.ref = "junit" }
  38. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junittest" }
  39. espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso" }
  40. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version = "2.1.4" }
  41. coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines" }
  42. [plugins]
  43. android-application = { id = "com.android.application", version.ref = "androidGradlePlugin" }