Skip to content

Commit

Permalink
fix(deps): update bumptech.glide to v4.16.0 (#688)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Dec 22, 2024
1 parent a0edf0e commit c6a4f1d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ internal class GlideImagePlugin private constructor(
override fun onLoadFailed(
e: GlideException?,
model: Any?,
target: Target<Drawable>?,
target: Target<Drawable?>,
isFirstResource: Boolean
): Boolean {
if (e != null)
Expand All @@ -32,10 +32,10 @@ internal class GlideImagePlugin private constructor(
}

override fun onResourceReady(
resource: Drawable?,
model: Any?,
target: Target<Drawable>?,
dataSource: DataSource?,
resource: Drawable,
model: Any,
target: Target<Drawable?>?,
dataSource: DataSource,
isFirstResource: Boolean
): Boolean {
if (resource is Animatable)
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ androidx-test-rules = "1.6.1"
androidx-test-ext = "1.2.1"
androidx-work = "2.9.1"

bumptech-glide = "4.15.1"
bumptech-glide = "4.16.0"

io-koin = "3.2.0"
io-objectbox = "4.0.3"
Expand Down

0 comments on commit c6a4f1d

Please sign in to comment.