diff --git a/core/network/build.gradle.kts b/core/network/build.gradle.kts index 203bb459..b48ab9e9 100644 --- a/core/network/build.gradle.kts +++ b/core/network/build.gradle.kts @@ -37,7 +37,9 @@ dependencies { implementation(libs.moshi.kotlin) implementation(libs.koin.android) - implementation(libs.chucker) + + debugImplementation(libs.chucker) + releaseImplementation(libs.chucker.noop) implementation(libs.moshi.kotlin) ksp(libs.moshi.kotlin.codegen) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 4be2a383..4cdc1dbe 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -41,6 +41,7 @@ haze = { module = "dev.chrisbanes.haze:haze", version.ref = "haze" } haze-materials = { module = "dev.chrisbanes.haze:haze-materials", version.ref = "haze" } junit = { module = "junit:junit", version.ref = "junit" } chucker = { module = "com.github.chuckerteam.chucker:library", version.ref = "chucker" } +chucker-noop = { module = "com.github.chuckerteam.chucker:library-no-op", version.ref = "chucker" } guava = { module = "com.google.guava:guava", version.ref = "guava" } kotlinx-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "coroutines" } kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" }