From 64db21a1fb886efe7bc742aef9c8d7abcde0b6b2 Mon Sep 17 00:00:00 2001 From: Robinson Date: Sun, 27 Nov 2022 21:31:06 +0100 Subject: [PATCH] Changes impl -> api --- build.gradle.kts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 7afeb88..7af245c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -113,20 +113,20 @@ dependencies { val okHttpVer = "4.9.1" val retroVer = "2.9.0" - implementation("com.squareup.okhttp3:okhttp:$okHttpVer") - implementation("com.squareup.okhttp3:logging-interceptor:$okHttpVer") // Log Network Calls + api("com.squareup.okhttp3:okhttp:$okHttpVer") + api("com.squareup.okhttp3:logging-interceptor:$okHttpVer") // Log Network Calls // better SSL library - implementation("org.conscrypt:conscrypt-openjdk-uber:2.5.2") + api("org.conscrypt:conscrypt-openjdk-uber:2.5.2") // For serialization. THESE ARE NOT TRANSITIVE because it screws up the kotlin version - implementation("com.squareup.retrofit2:retrofit:$retroVer") - implementation("com.squareup.retrofit2:converter-moshi:$retroVer") + api("com.squareup.retrofit2:retrofit:$retroVer") + api("com.squareup.retrofit2:converter-moshi:$retroVer") - implementation ("com.squareup.moshi:moshi:$moshiVer") - implementation ("com.squareup.moshi:moshi-kotlin:$moshiVer") + api("com.squareup.moshi:moshi:$moshiVer") + api("com.squareup.moshi:moshi-kotlin:$moshiVer") - implementation("com.dorkbox:Updates:1.1") + api("com.dorkbox:Updates:1.1") // for AUTOMATIC kotlin reflective serialization of json classes kapt ("com.squareup.moshi:moshi-kotlin-codegen:$moshiVer")