Hanhan Husna

Results 5 comments of 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 ![html](https://user-images.githubusercontent.com/315048/43632052-2c77caa4-972f-11e8-8eae-0199f06d9232.png) Thanks.

any update? I meet the same crash when tried to load image and using override(width, height) image: ![ian-custom-kosong](https://github.com/user-attachments/assets/0517d13b-0300-494f-aa7a-edbf89701ffc) ``` 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) ```