libs.versions.toml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. [versions]
  2. agp = "9.1.0"
  3. kotlin = "2.3.10"
  4. compileSdk = "36"
  5. targetSdk = "36"
  6. minSdk = "24"
  7. coreKtx = "1.18.0"
  8. lifecycle = "2.10.0"
  9. activityCompose = "1.13.0"
  10. composeBom = "2026.03.00"
  11. coroutines = "1.10.2"
  12. datastore = "1.1.7"
  13. retrofit = "3.0.0"
  14. okhttp = "5.3.2"
  15. gson = "2.13.2"
  16. jserialization = "1.9.0"
  17. junit4 = "4.13.2"
  18. androidxJunit = "1.3.0"
  19. espresso = "3.7.0"
  20. [libraries]
  21. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
  22. androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle" }
  23. androidx-lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lifecycle" }
  24. androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
  25. androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
  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. androidx-material-icons-extended = { group = "androidx.compose.material", name = "material-icons-extended" }
  34. androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "datastore" }
  35. kotlinx-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "jserialization" }
  36. retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit" }
  37. retrofit-converter-gson = { group = "com.squareup.retrofit2", name = "converter-gson", version.ref = "retrofit" }
  38. okhttp = { group = "com.squareup.okhttp3", name = "okhttp", version.ref = "okhttp" }
  39. okhttp-logging = { group = "com.squareup.okhttp3", name = "logging-interceptor", version.ref = "okhttp" }
  40. gson = { group = "com.google.code.gson", name = "gson", version.ref = "gson" }
  41. kotlinx-coroutines-android = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-android", version.ref = "coroutines" }
  42. junit4 = { group = "junit", name = "junit", version.ref = "junit4" }
  43. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "androidxJunit" }
  44. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso" }
  45. [bundles]
  46. compose = [
  47. "androidx-ui",
  48. "androidx-ui-graphics",
  49. "androidx-ui-tooling-preview",
  50. "androidx-material3",
  51. "androidx-material-icons-extended"
  52. ]
  53. compose-debug = [
  54. "androidx-ui-tooling",
  55. "androidx-ui-test-manifest"
  56. ]
  57. network = [
  58. "retrofit",
  59. "retrofit-converter-gson",
  60. "okhttp",
  61. "okhttp-logging",
  62. "gson"
  63. ]
  64. [plugins]
  65. android-application = { id = "com.android.application", version.ref = "agp" }
  66. android-library = { id = "com.android.library", version.ref = "agp" }
  67. kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
  68. kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }