libs.versions.toml 1.5 KB

1234567891011121314151617181920212223242526272829303132
  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. retrofit = "2.9.0"
  13. converterGson = "2.9.0"
  14. picasso = "2.71828"
  15. [libraries]
  16. androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
  17. junit = { group = "junit", name = "junit", version.ref = "junit" }
  18. androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
  19. androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
  20. androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  21. material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  22. androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
  23. androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  24. retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit" }
  25. converter-gson = { group = "com.squareup.retrofit2", name = "converter-gson", version.ref = "converterGson" }
  26. picasso = { group = "com.squareup.picasso", name = "picasso", version.ref = "picasso" }
  27. [plugins]
  28. androidApplication = { id = "com.android.application", version.ref = "agp" }
  29. jetbrainsKotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }