libs.versions.toml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [versions]
  2. # plugin
  3. agp = "8.4.0"
  4. kotlin-android = "1.8.0"
  5. hilt = "2.44"
  6. core-ktx = "1.10.1"
  7. junit = "4.13.2"
  8. junit-version = "1.1.5"
  9. espresso-core = "3.5.1"
  10. lifecycle-runtime-ktx = "2.6.1"
  11. activity-compose = "1.8.0"
  12. compose-bom = "2023.08.00"
  13. serialization = "1.9.24"
  14. appcompat = "1.6.1"
  15. material = "1.10.0"
  16. activity = "1.8.0"
  17. constraintlayout = "2.1.4"
  18. #lib
  19. [libraries]
  20. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" }
  21. junit = { group = "junit", name = "junit", version.ref = "junit" }
  22. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junit-version" }
  23. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso-core" }
  24. androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle-runtime-ktx" }
  25. androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activity-compose" }
  26. androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "compose-bom" }
  27. androidx-ui = { group = "androidx.compose.ui", name = "ui" }
  28. androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
  29. androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
  30. androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
  31. androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
  32. androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
  33. androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
  34. androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  35. material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  36. androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
  37. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  38. [plugins]
  39. application = { id = "com.android.application", version.ref = "agp" }
  40. library = { id = "com.android.library", version.ref = "agp" }
  41. kotlin = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin-android" }
  42. hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
  43. serialization = { id = "org.jetbrains.kotlin.plugin.serialization",version.ref="serialization"}
  44. [bundles]