diff --git a/stream-log-android-init/build.gradle b/stream-log-android-init/build.gradle index 6bb3f6a..ca9ab07 100644 --- a/stream-log-android-init/build.gradle +++ b/stream-log-android-init/build.gradle @@ -27,9 +27,8 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { } dependencies { - implementation project(":stream-log") + api project(":stream-log-android") implementation project(":stream-log-file") - implementation project(":stream-log-android") implementation Dependencies.androidxCoreKtx diff --git a/stream-log-android/build.gradle b/stream-log-android/build.gradle index cb57f8c..e61b352 100644 --- a/stream-log-android/build.gradle +++ b/stream-log-android/build.gradle @@ -27,7 +27,7 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { } dependencies { - implementation project(":stream-log") + api project(":stream-log") implementation Dependencies.androidxAnnotations diff --git a/stream-log-file/build.gradle b/stream-log-file/build.gradle index d9d5f97..740bab0 100644 --- a/stream-log-file/build.gradle +++ b/stream-log-file/build.gradle @@ -30,7 +30,7 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { } dependencies { - implementation project(":stream-log") + api project(":stream-log") testImplementation Dependencies.junit4