Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.

Commit cd9a9df

Browse files
author
Pavel Skala
committed
Make library dependency compileOnly
1 parent e595b45 commit cd9a9df

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

firebase-fetcher/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ android {
2121
dependencies {
2222
testImplementation 'junit:junit:4.12'
2323
implementation 'com.google.firebase:firebase-config:15.0.0'
24-
implementation project(':library')
24+
compileOnly project(':library')
2525
}
2626

2727
ext {

rest-fetcher/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
2929

3030
testImplementation 'junit:junit:4.12'
31-
implementation project(":library")
31+
compileOnly project(":library")
3232
}
3333

3434
ext {

0 commit comments

Comments
 (0)