libs.versions.toml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. [versions]
  2. agp = "8.5.2"
  3. kotlin = "2.1.10"
  4. coreKtx = "1.13.0"
  5. junit = "4.13.2"
  6. junitVersion = "1.1.5"
  7. espressoCore = "3.5.1"
  8. appcompat = "1.7.0"
  9. material = "1.10.0"
  10. activity = "1.8.0"
  11. constraintlayout = "2.1.4"
  12. mvvmhabit = "4.0.0"
  13. okhttps = "4.1.0"
  14. log-interceptor = "4.1.0"
  15. autosize = "v1.2.1"
  16. fastble = "1.4.2"
  17. lifecycle-version = "2.9.0"
  18. nav_version = "2.9.0"
  19. kotlin_serialization_json = "1.7.3"
  20. room-version = "2.7.1"
  21. [libraries]
  22. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
  23. junit = { group = "junit", name = "junit", version.ref = "junit" }
  24. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
  25. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
  26. androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  27. material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  28. androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
  29. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  30. mvvmhabit = { group = "com.github.goldze", name = "MVVMHabit", version.ref = "mvvmhabit" }
  31. okhttps = { group = "cn.zhxu", name = "okhttps-gson", version.ref = "okhttps" }
  32. okhttps-stomp = { group = "cn.zhxu", name = "okhttps-stomp", version.ref = "okhttps" }
  33. log-interceptor = { group = "com.squareup.okhttp3", name = "logging-interceptor", version.ref = "log-interceptor" }
  34. autosize = { group = "com.github.JessYanCoding", name = "AndroidAutoSize", version.ref = "autosize" }
  35. fastble = { group = "com.github.kanshenmekan", name = "FastBle", version.ref = "fastble" }
  36. viewmodel-ktx = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-ktx", version.ref = "lifecycle-version" }
  37. viewmodel-livedata-ktx = { group = "androidx.lifecycle", name = "lifecycle-livedata-ktx", version.ref = "lifecycle-version" }
  38. viewmodel-savestate = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-savedstate", version.ref = "lifecycle-version" }
  39. viewmodel-compiler = { group = "androidx.lifecycle", name = "lifecycle-compiler", version.ref = "lifecycle-version" }
  40. room-runtime = { group = "androidx.room",name = "room-runtime",version.ref = "room-version" }
  41. room-compiler = { group = "androidx.room",name = "room-compiler",version.ref = "room-version" }
  42. room-ktx = { group = "androidx.room",name = "room-ktx",version.ref = "room-version" }
  43. room-testing = { group = "androidx.room",name = "room-testing",version.ref = "room-version" }
  44. android-navigation-fragment = { group = "androidx.navigation", name = "navigation-fragment", version.ref = "nav_version" }
  45. android-navigation-ui = { group = "androidx.navigation", name = "navigation-ui", version.ref = "nav_version" }
  46. android-navigation-dynamic-features-fragment = { group = "androidx.navigation", name = "navigation-dynamic-features-fragment", version.ref = "nav_version" }
  47. kotlinx-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "kotlin_serialization_json" }
  48. [plugins]
  49. android-application = { id = "com.android.application", version.ref = "agp" }
  50. jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }