libs.versions.toml 1.8 KB

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