libs.versions.toml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. navigationCompose = "2.7.6"
  9. lyfecyleCompose = "2.7.0-rc02"
  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.6.1"
  16. material = "1.5.4"
  17. org-jetbrains-kotlin-android = "1.9.10"
  18. appcompat = "1.6.1"
  19. com-google-android-material-material = "1.11.0"
  20. ksp = "1.9.0-1.0.12"
  21. [libraries]
  22. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "ktx" }
  23. androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lyfecyleCompose" }
  24. androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "compose" }
  25. androidx-navigation-compose = { module = "androidx.navigation:navigation-compose", version.ref = "navigationCompose" }
  26. androidx-lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lyfecyleCompose" }
  27. android-compose-material = { group = "androidx.compose.material", name = "material", version.ref = "material" }
  28. kotlinx-collections-immutable = { group = "org.jetbrains.kotlinx", name = "kotlinx-collections-immutable", version.ref = "immutable" }
  29. android-play-services-location = { group = "com.google.android.gms", name = "play-services-location", version.ref = "location" }
  30. # Hilt
  31. hilt-android-gradle-plugin = { module = "com.google.dagger:hilt-android-gradle-plugin", version.ref = "hilt" }
  32. hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" }
  33. hilt-android-compiler = { group = "com.google.dagger", name = "hilt-android-compiler", version.ref = "hilt" }
  34. # Retrofit
  35. retrofit-retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit" }
  36. retrofit-converter-moshi = { group = "com.squareup.retrofit2", name = "converter-moshi", version.ref = "retrofit" }
  37. # Room
  38. room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" }
  39. room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" }
  40. # Test
  41. junit-junit = { group = "junit", name = "junit", version.ref = "junit" }
  42. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junittest" }
  43. espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso" }
  44. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version = "2.1.4" }
  45. coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines" }
  46. appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  47. material = { group = "com.google.android.material", name = "material", version.ref = "com-google-android-material-material" }
  48. [plugins]
  49. android-application = { id = "com.android.application", version.ref = "androidGradlePlugin" }
  50. com-android-library = { id = "com.android.library", version.ref = "androidGradlePlugin" }
  51. org-jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "org-jetbrains-kotlin-android" }
  52. com-google-devtools-ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
  53. com-google-dagger-hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
  54. dagger-hilt = { id = "dagger.hilt.android.plugin", version.ref = "hilt"}