1
0

libs.versions.toml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [versions]
  2. # Plugins
  3. agp = "8.13.0"
  4. kotlin = "2.2.20"
  5. # AndroidX
  6. activity = "1.11.0"
  7. appcompat = "1.7.1"
  8. core-ktx = "1.17.0"
  9. constraint-layout = "2.2.1"
  10. datastore-preferences = "1.1.7"
  11. # Material
  12. material = "1.13.0"
  13. # Testing
  14. espresso-core = "3.7.0"
  15. androidx-junit = "1.3.0"
  16. junit = "4.13.2"
  17. [plugins]
  18. android-application = { id = "com.android.application", version.ref = "agp" }
  19. android-library = { id = "com.android.library", version.ref = "agp" }
  20. jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
  21. [libraries]
  22. # AndroidX
  23. androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
  24. androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  25. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraint-layout" }
  26. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" }
  27. androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "datastore-preferences" }
  28. #Material
  29. material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  30. # Testing
  31. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso-core" }
  32. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "androidx-junit" }
  33. junit = { group = "junit", name = "junit", version.ref = "junit" }
  34. [bundles]
  35. androidx = [
  36. "androidx-activity",
  37. "androidx-appcompat",
  38. "androidx-constraintlayout",
  39. "androidx-core-ktx",
  40. "androidx-datastore-preferences",
  41. ]