Skip to content

Commit c091cf5

Browse files
committed
Code review adjustments
1 parent 7024c72 commit c091cf5

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

buildSrc/src/main/java/Dependencies.kt

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ interface GroupLibs {
66

77
object Dependencies {
88
const val runnerPackage = "androidx.test.runner.AndroidJUnitRunner"
9+
const val coil = "io.coil-kt:coil-compose:${Versions.coilVersion}"
910

1011
object Module {
1112
const val core_networking = ":core-networking"
@@ -151,11 +152,4 @@ object Dependencies {
151152
Compose.composeMaterial3
152153
)
153154
}
154-
155-
object Coil: GroupLibs {
156-
const val coil = "io.coil-kt:coil-compose:${Versions.coilVersion}"
157-
158-
override val list: List<String>
159-
get() = listOf(Coil.coil)
160-
}
161155
}

feature-list-streams/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ android {
2424
Dependencies.UnitTest.list.forEach { testImplementation(it) }
2525
//Dependencies.AndroidTest.list.forEach { androidTestImplementation(it) }
2626

27-
Dependencies.Coil.list.forEach { implementation(it) }
27+
implementation(Dependencies.coil)
2828
}
2929
}

0 commit comments

Comments
 (0)