How to display GIF in react-native android app?

前端 未结 8 2113
醉梦人生
醉梦人生 2020-12-01 13:50

I want to display a simple gif via URL in my Image tag in my android react-native app but when I start it no image is shown. The code as provided in the docs does work only

8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-01 14:44

    For me adding the dependencies like below wasn't enough:

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

    I also had to upgrade my gradle version in the file:

    android/gradle/wrapper/gradle-wrapper.properties like this:

    distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
    

    and also my build tools version in the file:

    android/build.gradle like this:

    classpath 'com.android.tools.build:gradle:3.0.1'
    

提交回复
热议问题