How can I display animated GIFs with this library ? The code below only shows a static version of the GIF not a moving one.
addSlide(new SimpleSlide.Builder()
.title("This is supposed to be an animated GIF")
.image(R.drawable.animated_gif)
.build());
I have taken a look at Glide
but I'm not sure how to use it in this case.