12345678910111213141516171819202122232425262728293031 |
- plugins {
- id("d.convention.library")
- id("d.convention.hilt")
- }
- android {
- namespace = "com.zaojiao.app.core.http"
- }
- dependencies {
- implementation(project(":core:common"))
- implementation(project(":core:auth"))
- implementation(project(":core:json"))
- implementation(libs.coil.kt)
- implementation(libs.coil.kt.svg)
- implementation(libs.coil.kt.gif)
- implementation("org.jetbrains.kotlin:kotlin-reflect:${libs.versions.kotlin.get()}")
- api("com.squareup.okhttp3:okhttp:4.10.0")
- api("com.squareup.okhttp3:logging-interceptor:4.10.0")
- api("com.squareup.retrofit2:retrofit:2.9.0")
- api("com.squareup.retrofit2:converter-moshi:2.9.0")
- api("com.squareup.retrofit2:converter-scalars:2.9.0")
- api("com.squareup.moshi:moshi:1.15.0")
- api("com.squareup.moshi:moshi-kotlin:1.15.0")
- api("com.squareup.moshi:moshi-adapters:1.14.0")
- }
|