File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ interface GroupLibs {
66
77object 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}
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments