libs.versions.toml 3.1 KB

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