libs.versions.toml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. [versions]
  2. agp = "8.12.1"
  3. kotlin = "2.2.10"
  4. coreKtx = "1.15.0"
  5. junit = "4.13.2"
  6. junitVersion = "1.2.1"
  7. espressoCore = "3.6.1"
  8. appcompat = "1.7.1"
  9. material = "1.12.0"
  10. activity = "1.10.1"
  11. constraintlayout = "2.1.4"
  12. recyclerview = "1.3.1"
  13. viewpager2 = "1.0.0"
  14. retrofit2 = "3.0.0"
  15. smartRefreshLayout = "2.1.1"
  16. eventbus = "3.3.1"
  17. signalr = "9.0.7"
  18. smartTable = "2.2.0"
  19. mpAndroidChart = "v3.1.0"
  20. picasso = "2.71828"
  21. matisse = "2.2.1"
  22. markwon = "4.6.2"
  23. [libraries]
  24. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
  25. junit = { group = "junit", name = "junit", version.ref = "junit" }
  26. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
  27. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
  28. androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  29. material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  30. androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
  31. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  32. androidx-recyclerview = { group = "androidx.recyclerview", name = "recyclerview", version.ref = "recyclerview" }
  33. androidx-viewpager2 = { group = "androidx.viewpager2", name = "viewpager2", version.ref = "viewpager2" }
  34. retrofit2 = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit2" }
  35. retrofit2-converter-gson = { group = "com.squareup.retrofit2", name = "converter-gson", version.ref = "retrofit2" }
  36. smartRefreshLayout = { group = "io.github.scwang90", name = "refresh-layout-kernel", version.ref = "smartRefreshLayout" }
  37. smartRefresh-header = { group = "io.github.scwang90", name = "refresh-header-classics", version.ref = "smartRefreshLayout" }
  38. smartRefresh-footer = { group = "io.github.scwang90", name = "refresh-footer-classics", version.ref = "smartRefreshLayout" }
  39. eventbus = { group = "org.greenrobot", name = "eventbus", version.ref = "eventbus" }
  40. signalr = { group = "com.microsoft.signalr", name = "signalr", version.ref = "signalr" }
  41. smartTable = { group = "com.github.huangyanbin", name = "SmartTable", version.ref = "smartTable" }
  42. mpAndroidChart = { group = "com.github.PhilJay", name = "MPAndroidChart", version.ref = "mpAndroidChart" }
  43. picasso = { group = "com.squareup.picasso", name = "picasso", version.ref = "picasso" }
  44. matisse = { group = "io.github.leavesczy", name = "matisse", version.ref = "matisse" }
  45. markwon = { group = "io.noties.markwon", name = "core", version.ref = "markwon" }
  46. markwon-ext-tables = { group = "io.noties.markwon", name = "ext-tables", version.ref = "markwon" }
  47. [bundles]
  48. retrofit2 = ["retrofit2", "retrofit2-converter-gson"]
  49. smartRefreshLayout = ["smartRefreshLayout", "smartRefresh-header", "smartRefresh-footer"]
  50. markwon = ["markwon", "markwon-ext-tables"]
  51. [plugins]
  52. android-application = { id = "com.android.application", version.ref = "agp" }
  53. kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }