libs.versions.toml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [versions]
  2. agp = "8.2.2"
  3. kotlin = "1.9.21"
  4. core-ktx = "1.12.0"
  5. junit = "4.13.2"
  6. androidx-test-ext-junit = "1.1.5"
  7. espresso-core = "3.5.1"
  8. lifecycle-runtime-ktx = "2.7.0"
  9. activity-compose = "1.8.2"
  10. compose-bom = "2023.10.01"
  11. ksp = "1.9.21-1.0.16"
  12. hilt = "2.50"
  13. hilt-navigation = "1.1.0"
  14. room = "2.6.1"
  15. jsoup = "1.17.2"
  16. media3_version = "1.2.1"
  17. [libraries]
  18. core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" }
  19. junit = { group = "junit", name = "junit", version.ref = "junit" }
  20. androidx-test-ext-junit = { group = "androidx.test.ext", name = "junit", version.ref = "androidx-test-ext-junit" }
  21. espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso-core" }
  22. lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle-runtime-ktx" }
  23. lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lifecycle-runtime-ktx" }
  24. activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activity-compose" }
  25. compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "compose-bom" }
  26. ui = { group = "androidx.compose.ui", name = "ui" }
  27. ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
  28. ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
  29. ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
  30. ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
  31. ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
  32. material3 = { group = "androidx.compose.material3", name = "material3" }
  33. # Hilt
  34. hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" }
  35. hilt-navigation-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hilt-navigation" }
  36. hilt-android-compiler = { group = "com.google.dagger", name = "hilt-android-compiler", version.ref = "hilt" }
  37. # Room
  38. room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" }
  39. room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" }
  40. room-ktx = { group = "androidx.room", name = "room-ktx", version.ref = "room" }
  41. jsoup = { group = "org.jsoup", name = "jsoup", version.ref = "jsoup" }
  42. media3-exoplayer = { group = "androidx.media3", name = "media3-exoplayer", version.ref = "media3_version" }
  43. media3-ui = { group = "androidx.media3", name = "media3-ui", version.ref = "media3_version" }
  44. [plugins]
  45. androidApplication = { id = "com.android.application", version.ref = "agp" }
  46. kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
  47. google-ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
  48. google-hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }