libs.versions.toml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. [versions]
  2. agp = "8.11.1"
  3. kotlin = "2.2.0"
  4. coreKtx = "1.15.0"
  5. junit = "4.13.2"
  6. junitVersion = "1.2.1"
  7. espressoCore = "3.6.1"
  8. appcompat = "1.7.0"
  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.0"
  22. [libraries]
  23. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
  24. junit = { group = "junit", name = "junit", version.ref = "junit" }
  25. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
  26. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
  27. androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  28. material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  29. androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
  30. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  31. androidx-recyclerview = { group = "androidx.recyclerview", name = "recyclerview", version.ref = "recyclerview" }
  32. androidx-viewpager2 = { group = "androidx.viewpager2", name = "viewpager2", version.ref = "viewpager2" }
  33. retrofit2 = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit2" }
  34. retrofit2-converter-gson = { group = "com.squareup.retrofit2", name = "converter-gson", version.ref = "retrofit2" }
  35. smartRefreshLayout = { group = "io.github.scwang90", name = "refresh-layout-kernel", version.ref = "smartRefreshLayout" }
  36. smartRefresh-header = { group = "io.github.scwang90", name = "refresh-header-classics", version.ref = "smartRefreshLayout" }
  37. smartRefresh-footer = { group = "io.github.scwang90", name = "refresh-footer-classics", version.ref = "smartRefreshLayout" }
  38. eventbus = { group = "org.greenrobot", name = "eventbus", version.ref = "eventbus" }
  39. signalr = { group = "com.microsoft.signalr", name = "signalr", version.ref = "signalr" }
  40. smartTable = { group = "com.github.huangyanbin", name = "SmartTable", version.ref = "smartTable" }
  41. mpAndroidChart = { group = "com.github.PhilJay", name = "MPAndroidChart", version.ref = "mpAndroidChart" }
  42. picasso = { group = "com.squareup.picasso", name = "picasso", version.ref = "picasso" }
  43. matisse = { group = "io.github.leavesczy", name = "matisse", version.ref = "matisse" }
  44. [bundles]
  45. retrofit2 = ["retrofit2", "retrofit2-converter-gson"]
  46. smartRefreshLayout = ["smartRefreshLayout", "smartRefresh-header", "smartRefresh-footer"]
  47. [plugins]
  48. android-application = { id = "com.android.application", version.ref = "agp" }
  49. kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }