libs.versions.toml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. hawk = "2.0.1"
  14. annotation-jvm = "1.9.1"
  15. appcompat = "1.6.1"
  16. material = "1.10.0"
  17. #lib
  18. [libraries]
  19. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" }
  20. junit = { group = "junit", name = "junit", version.ref = "junit" }
  21. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junit-version" }
  22. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso-core" }
  23. androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle-runtime-ktx" }
  24. androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activity-compose" }
  25. androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "compose-bom" }
  26. androidx-ui = { group = "androidx.compose.ui", name = "ui" }
  27. androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
  28. androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
  29. androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
  30. androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
  31. androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
  32. androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
  33. hawk = { group = "com.orhanobut", name = "hawk", version.ref = "hawk" }
  34. androidx-annotation-jvm = { group = "androidx.annotation", name = "annotation-jvm", version.ref = "annotation-jvm" }
  35. androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  36. material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  37. [plugins]
  38. application = { id = "com.android.application", version.ref = "agp" }
  39. library = { id = "com.android.library", version.ref = "agp" }
  40. kotlin = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin-android" }
  41. hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
  42. [bundles]