From 6d9121b54d6971c4da89d9c263f03626e37eb069 Mon Sep 17 00:00:00 2001 From: Dimitry Ivanov Date: Tue, 14 Jan 2020 16:33:08 +0300 Subject: [PATCH] Update images plugin documentation page --- docs/docs/v4/image/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/docs/v4/image/README.md b/docs/docs/v4/image/README.md index 62cb8e77..efd3b867 100644 --- a/docs/docs/v4/image/README.md +++ b/docs/docs/v4/image/README.md @@ -184,11 +184,12 @@ imagesPlugin.addSchemeHandler(new SchemeHandler() { :::warning If you wish to add support for **SVG** or **GIF** you must explicitly add these dependencies to your project: -* for `SVG`: `com.caverock:androidsvg:1.4` -* for `GIF`: `pl.droidsonroids.gif:android-gif-drawable:1.2.14` +* to support `SVG`: [com.caverock:androidsvg](https://github.com/BigBadaboom/androidsvg) +* to support `GIF`: [pl.droidsonroids.gif:android-gif-drawable](https://github.com/koral--/android-gif-drawable) -You can try more recent versions of these libraries, but make sure that they doesn't -introduce any unexpected behavior. +For [security reasons](https://github.com/noties/Markwon/issues/186) it's advisable to use latest +versions of these libraries. If you notice compilation and/or runtime issues when used with Markwon, +please [create an issue](https://github.com/noties/Markwon/issues/new) specifying library and library version used. :::