gif not working in react native

Solutions on MaxInterview for gif not working in react native by the best coders in the world

showing results for - "gif not working in react native"
Davide
21 Jul 2017
1Edit your android/app/build.gradle file and add the following code:
2
3
4dependencies: { 
5...
6compile 'com.facebook.fresco:fresco:1.+'
7
8// For animated GIF support
9compile 'com.facebook.fresco:animated-gif:1.+'
10
11// For WebP support, including animated WebP
12compile 'com.facebook.fresco:animated-webp:1.+'
13compile 'com.facebook.fresco:webpsupport:1.+' 
14