libs.versions.toml 1.4 KB

123456789101112131415161718192021222324252627282930
  1. [versions]
  2. agp = "8.1.3"
  3. kotlin = "1.9.0"
  4. coreKtx = "1.10.1"
  5. junit = "4.13.2"
  6. junitVersion = "1.1.5"
  7. espressoCore = "3.5.1"
  8. appcompat = "1.6.1"
  9. material = "1.10.0"
  10. activity = "1.8.0"
  11. constraintlayout = "2.1.4"
  12. legacySupportV4 = "1.0.0"
  13. recyclerview = "1.3.2"
  14. [libraries]
  15. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
  16. junit = { group = "junit", name = "junit", version.ref = "junit" }
  17. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
  18. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
  19. androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  20. material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  21. androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
  22. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  23. androidx-legacy-support-v4 = { group = "androidx.legacy", name = "legacy-support-v4", version.ref = "legacySupportV4" }
  24. androidx-recyclerview = { group = "androidx.recyclerview", name = "recyclerview", version.ref = "recyclerview" }
  25. [plugins]
  26. androidApplication = { id = "com.android.application", version.ref = "agp" }
  27. jetbrainsKotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }