libs.versions.toml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. activityKtx = "1.13.0"
  11. composeBom = "2026.03.00"
  12. coroutines = "1.10.2"
  13. datastore = "1.1.7"
  14. retrofit = "3.0.0"
  15. okhttp = "5.3.2"
  16. gson = "2.13.2"
  17. jserialization = "1.9.0"
  18. webkit = "1.14.0"
  19. coil = "2.7.0"
  20. junit4 = "4.13.2"
  21. androidxJunit = "1.3.0"
  22. espresso = "3.7.0"
  23. [libraries]
  24. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
  25. androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle" }
  26. androidx-lifecycle-runtime-compose = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lifecycle" }
  27. androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
  28. androidx-activity-ktx = { group = "androidx.activity", name = "activity-ktx", version.ref = "activityKtx" }
  29. androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
  30. androidx-ui = { group = "androidx.compose.ui", name = "ui" }
  31. androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
  32. androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
  33. androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
  34. androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
  35. androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
  36. androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
  37. androidx-material-icons-extended = { group = "androidx.compose.material", name = "material-icons-extended" }
  38. androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "datastore" }
  39. kotlinx-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "jserialization" }
  40. androidx-webkit = { group = "androidx.webkit", name = "webkit", version.ref = "webkit" }
  41. coil-compose = { group = "io.coil-kt", name = "coil-compose", version.ref = "coil" }
  42. retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit" }
  43. retrofit-converter-gson = { group = "com.squareup.retrofit2", name = "converter-gson", version.ref = "retrofit" }
  44. okhttp = { group = "com.squareup.okhttp3", name = "okhttp", version.ref = "okhttp" }
  45. okhttp-logging = { group = "com.squareup.okhttp3", name = "logging-interceptor", version.ref = "okhttp" }
  46. gson = { group = "com.google.code.gson", name = "gson", version.ref = "gson" }
  47. kotlinx-coroutines-android = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-android", version.ref = "coroutines" }
  48. junit4 = { group = "junit", name = "junit", version.ref = "junit4" }
  49. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "androidxJunit" }
  50. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso" }
  51. [bundles]
  52. compose = [
  53. "androidx-ui",
  54. "androidx-ui-graphics",
  55. "androidx-ui-tooling-preview",
  56. "androidx-material3",
  57. "androidx-material-icons-extended"
  58. ]
  59. compose-debug = [
  60. "androidx-ui-tooling",
  61. "androidx-ui-test-manifest"
  62. ]
  63. network = [
  64. "retrofit",
  65. "retrofit-converter-gson",
  66. "okhttp",
  67. "okhttp-logging",
  68. "gson"
  69. ]
  70. [plugins]
  71. android-application = { id = "com.android.application", version.ref = "agp" }
  72. android-library = { id = "com.android.library", version.ref = "agp" }
  73. kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
  74. kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }