libs.versions.toml 842 B

1234567891011121314151617181920
  1. [versions]
  2. #noinspection GradleDependency
  3. agp = "8.2.2" # 8.3.0 causes java verifier error: https://github.com/ReVanced/revanced-patches/issues/2818
  4. annotation = "1.8.0"
  5. kotlin = "2.0.0"
  6. appcompat = "1.7.0-rc01"
  7. okhttp = "5.0.0-alpha.14"
  8. retrofit = "2.11.0"
  9. [libraries]
  10. annotation = { module = "androidx.annotation:annotation", version.ref = "annotation" }
  11. appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  12. okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" }
  13. retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" }
  14. [plugins]
  15. android-application = { id = "com.android.application", version.ref = "agp" }
  16. android-library = { id = "com.android.library", version.ref = "agp" }
  17. kotlin = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }