Skip to content

Commit

Permalink
Add image loader dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
msasikanth committed Sep 16, 2023
1 parent 75f52d9 commit acbbab7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ androidx_test_rules = "1.5.0"
androidx_work = "2.8.1"
androidx_datastore = "1.1.0-alpha05"
androidx_browser = "1.6.0"
coil = "2.4.0"
spotless = "6.21.0"
ktfmt = "0.44"
kotlininject = "0.6.3"
Expand All @@ -42,6 +41,7 @@ lyricist = "1.4.2"
atomicfu = "0.22.0"
okio = "3.5.0"
paging = "3.2.0-alpha05-0.2.3"
imageloader = "1.6.7"

[libraries]
compose_runtime = { module = "org.jetbrains.compose.runtime:runtime", version.ref = "compose" }
Expand Down Expand Up @@ -80,7 +80,6 @@ androidx_work = { module = "androidx.work:work-runtime-ktx", version.ref = "andr
androidx_datastore_okio = { module = "androidx.datastore:datastore-core-okio", version.ref = "androidx_datastore" }
androidx_datastore_preferences = { module = "androidx.datastore:datastore-preferences-core", version.ref = "androidx_datastore" }
androidx_browser = { module = "androidx.browser:browser", version.ref = "androidx_browser" }
coil_compose = { module = "io.coil-kt:coil-compose", version.ref = "coil" }
kotlininject-compiler = { module = 'me.tatarka.inject:kotlin-inject-compiler-ksp', version.ref = 'kotlininject' }
kotlininject-runtime = { module = 'me.tatarka.inject:kotlin-inject-runtime', version.ref = 'kotlininject' }
material_color_utilities = { module = "dev.sasikanth:material-color-utilities", version.ref = "material_color_utilities" }
Expand All @@ -94,6 +93,7 @@ lyricist-processor = { module = "cafe.adriel.lyricist:lyricist-processor", versi
okio = { module = "com.squareup.okio:okio", version.ref = "okio" }
paging-common = { module = "app.cash.paging:paging-common", version.ref = "paging" }
paging-compose = { module = "app.cash.paging:paging-compose-common", version.ref = "paging" }
imageloader = { module = "io.github.qdsfdhvh:image-loader", version.ref = "imageloader" }

[plugins]
android_application = { id = "com.android.application", version.ref = "android_gradle_plugin" }
Expand Down
2 changes: 1 addition & 1 deletion shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ kotlin {
api(libs.okio)
implementation(libs.paging.common)
implementation(libs.paging.compose)
implementation(libs.imageloader)
}
}
val commonTest by getting {
Expand All @@ -125,7 +126,6 @@ kotlin {
api(libs.androidx.core)
implementation(libs.ktor.client.okhttp)
implementation(libs.sqldelight.driver.android)
implementation(libs.coil.compose)
api(libs.sqliteAndroid)
}
}
Expand Down

0 comments on commit acbbab7

Please sign in to comment.