From b36be73aa73b8a458e52cd7cb192b162895b0946 Mon Sep 17 00:00:00 2001 From: Matias Radzinski Date: Sat, 22 Apr 2017 02:25:22 -0300 Subject: [PATCH] Updated README Added ```.dontAnimate()``` to Glide part. It prevents some issues with the library. Users should check out Glide's README for options on how to solve this, but for now and to avoid other issues, ```.dontAnimate()``` should be included. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1cf360a..dd947b5 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ Get the sample app on Play Store.
[![Play Store Image](https://camo.githubus Glide.with(context) .load(src) .asBitmap() + .dontAnimate() .listener(l) .into(imageView) ```