libs.versions.toml 1.9 KB

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