美文网首页
RN安卓支持Gif图

RN安卓支持Gif图

作者: 双轮自行车 | 来源:发表于2019-02-22 10:19 被阅读0次

    <center>RN安卓支持Gif图</center>

    默认情况下 Android 是不支持 GIF 和 WebP 格式的。你需要在android/app/build.gradle文件中根据需要手动添加以下模块

    dependencies {
      // 如果你需要支持Android4.0(API level 14)之前的版本
      compile 'com.facebook.fresco:animated-base-support:1.10.0'
    
      // 如果你需要支持GIF动图
      compile 'com.facebook.fresco:animated-gif:1.10.0'
    
      // 如果你需要支持WebP格式,包括WebP动图
      compile 'com.facebook.fresco:animated-webp:1.10.0'
      compile 'com.facebook.fresco:webpsupport:1.10.0'
    
      // 如果只需要支持WebP格式而不需要动图
      compile 'com.facebook.fresco:webpsupport:1.10.0'
    }
    

    相关文章

      网友评论

          本文标题:RN安卓支持Gif图

          本文链接:https://www.haomeiwen.com/subject/hkusyqtx.html