libs.versions.toml 1.2 KB

123456789101112131415161718192021222324252627
  1. [versions]
  2. agp = "8.3.0"
  3. kotlin = "1.9.0"
  4. coreKtx = "1.12.0"
  5. junit = "4.13.2"
  6. junitVersion = "1.1.5"
  7. espressoCore = "3.5.1"
  8. appcompat = "1.6.1"
  9. material = "1.11.0"
  10. activity = "1.8.0"
  11. constraintlayout = "2.1.4"
  12. [libraries]
  13. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
  14. junit = { group = "junit", name = "junit", version.ref = "junit" }
  15. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
  16. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
  17. androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  18. material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  19. androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
  20. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  21. [plugins]
  22. androidApplication = { id = "com.android.application", version.ref = "agp" }
  23. jetbrainsKotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }