build.gradle.kts 656 B

12345678910111213141516171819202122232425
  1. plugins {
  2. id("d.convention.library")
  3. id("d.convention.hilt")
  4. }
  5. android {
  6. namespace = "com.zaojiao.app.core.http"
  7. }
  8. dependencies {
  9. implementation(project(":core:common"))
  10. implementation(project(":core:auth"))
  11. implementation(libs.coil.kt)
  12. implementation(libs.coil.kt.svg)
  13. api("com.squareup.okhttp3:okhttp:4.10.0")
  14. api("com.squareup.okhttp3:logging-interceptor:4.10.0")
  15. api("com.squareup.retrofit2:retrofit:2.9.0")
  16. api("com.squareup.retrofit2:converter-moshi:2.9.0")
  17. api("com.squareup.moshi:moshi:1.8.0")
  18. api("com.squareup.moshi:moshi-kotlin:1.8.0")
  19. api("com.squareup.moshi:moshi-adapters:1.8.0")
  20. }