I'm trying to display a GIF in my React Native App.
I also add animated-gif
in android>app>build.gradle.
dependencies {// The version of react-native is set by the React Native Gradle Pluginimplementation("com.facebook.react:react-android")// For animated GIF supportimplementation 'com.facebook.fresco:animated-gif:3.1.3'if (hermesEnabled.toBoolean()) { implementation("com.facebook.react:hermes-android")} else { implementation jscFlavor}}
But this only shows as an image, no animation. How to show GIF animation.