默认React Native中是不支持GIF图片的插入的,当我们插入之后,就可能会产生模拟器闪退,或者直接不能运行的问题。
编辑android/app/build.gradle下dependencies节点,加入以下代码:
compile 'com.facebook.fresco:animated-gif:1.3.0'
compile 'com.facebook.fresco:animated-base-support:1.3.0'
然后重新运行react-native run-android即可使用GIF图片啦