From 8b6947231fa2735211f3a95b6b19f5fbf3c8444e Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Tue, 23 Jul 2019 07:26:45 +0800 Subject: [PATCH] "implementation" replaced by "api" in build gradle --- build.gradle | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index cff9fb47ee..bd7283475e 100644 --- a/build.gradle +++ b/build.gradle @@ -30,15 +30,15 @@ repositories { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" - implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_coroutines_version" - implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime:$kotlin_serialisation_runtime_version" - implementation "joda-time:joda-time:$joda_time_version" + api "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_coroutines_version" + api "org.jetbrains.kotlinx:kotlinx-serialization-runtime:$kotlin_serialisation_runtime_version" + api "joda-time:joda-time:$joda_time_version" - implementation "io.ktor:ktor-client:$ktor_version" - implementation "io.ktor:ktor-client-cio:$ktor_version" + api "io.ktor:ktor-client:$ktor_version" + api "io.ktor:ktor-client-cio:$ktor_version" - implementation "io.ktor:ktor-server:$ktor_version" - implementation "io.ktor:ktor-server-host-common:$ktor_version" + api "io.ktor:ktor-server:$ktor_version" + api "io.ktor:ktor-server-host-common:$ktor_version" } compileKotlin {