React Native 0.60.0 & 0.60.x Android For animated GIF support

て烟熏妆下的殇ゞ 提交于 2019-12-11 06:25:31

问题


In latest version of React Native 0.60.x animated GIF is not working I am using following fresco version.

compile 'com.facebook.fresco:fresco:1.10.0'
compile 'com.facebook.fresco:animated-gif:1.10.0'

回答1:


Use following it works for me for RN v0.60.3

implementation 'com.facebook.fresco:fresco:2.0.0'
implementation 'com.facebook.fresco:animated-gif:2.0.0'



回答2:


Change the version to 2.0.0

    compile 'com.facebook.fresco:animated-gif:2.0.0' 

You don't need to use compile 'com.facebook.fresco:fresco:1.10.0'

EDIT.

On my project compile is still working, but changing it to implementation isn't giving any issue so you are good to go!

implementation 'com.facebook.fresco:animated-gif:2.0.0'


来源:https://stackoverflow.com/questions/57089042/react-native-0-60-0-0-60-x-android-for-animated-gif-support

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!