libs.versions.toml 1.4 KB

123456789101112131415161718192021222324252627282930
  1. [versions]
  2. agp = "8.9.0"
  3. gradle = "8.3.0"
  4. junit = "4.13.2"
  5. junitVersion = "1.2.1"
  6. espressoCore = "3.6.1"
  7. appcompat = "1.7.0"
  8. material = "1.12.0"
  9. constraintlayout = "2.2.1"
  10. nanohttpd = "2.3.1"
  11. navigationFragment = "2.6.0"
  12. navigationUi = "2.6.0"
  13. okhttp = "4.9.3"
  14. [libraries]
  15. gradle = { module = "com.android.tools.build:gradle", version.ref = "gradle" }
  16. junit = { group = "junit", name = "junit", version.ref = "junit" }
  17. ext-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
  18. espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
  19. appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  20. material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  21. constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  22. nanohttpd = { module = "org.nanohttpd:nanohttpd", version.ref = "nanohttpd" }
  23. navigation-fragment = { group = "androidx.navigation", name = "navigation-fragment", version.ref = "navigationFragment" }
  24. navigation-ui = { group = "androidx.navigation", name = "navigation-ui", version.ref = "navigationUi" }
  25. okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
  26. [plugins]
  27. android-application = { id = "com.android.application", version.ref = "agp" }