libs.versions.toml 1.2 KB

12345678910111213141516171819202122232425262728
  1. [versions]
  2. agp = "8.6.1"
  3. kotlin = "1.9.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.0"
  11. constraintlayout = "2.2.0"
  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. ext-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
  16. espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
  17. appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  18. material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  19. activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
  20. constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  21. [plugins]
  22. android-application = { id = "com.android.application", version.ref = "agp" }
  23. android-library = { id = "com.android.library", version.ref = "agp" }
  24. kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }