So, anybody know how to display an image with rounded corners with Glide? I am loading an image with Glide, but I don\'t know how to pass rounded params to this library.
Glide.with(context!!) .load(randomImage) .apply(RequestOptions.bitmapTransform(CircleCrop()).error(R.drawable.nyancat_animated)) .transition(DrawableTransitionOptions() .crossFade()) .into(picture)