Hanhan Husna
Hanhan Husna
@lisional remove that line solved this error for me. But now error in other libraries~ (and yes, it's because AndroidX)
is this issue fixed? I tried with latest version (0.5.3) problem still exist  Thanks.
update to 0.5.4. it fixed now. I think
any update? I meet the same crash when tried to load image and using override(width, height) image:  ``` val option = RequestOptions() .dontTransform().diskCacheStrategy(DiskCacheStrategy.DATA) .override(width, height) .placeholder(R.drawable.ic_launcher_background) Glide.with(this) .load(url) .apply(option)...
we can add `.fitCenter()` to perevent crash ``` val option = RequestOptions() .dontTransform().diskCacheStrategy(DiskCacheStrategy.DATA) .override(width, height).fitCenter() .placeholder(R.drawable.ic_launcher_background) Glide.with(this) .load(url) .apply(option) .into(imageView) ```