LoginSignup
10
2

More than 5 years have passed since last update.

React NativeでGIFを使う【Android】

Posted at

公式に書いてありますが、ハマってしまう人がいると思うので(自分みたいに)

React Nativeでは画像はImageで表示しますが、AndroidでGIFやWebPを扱う際にはandroid/app/build.gradleに以下を記述する必要があります。

dependencies {
  // If your app supports Android versions before Ice Cream Sandwich (API level 14)
  compile 'com.facebook.fresco:animated-base-support:1.9.0'

  // For animated GIF support
  compile 'com.facebook.fresco:animated-gif:1.9.0'

  // For WebP support, including animated WebP
  compile 'com.facebook.fresco:animated-webp:1.9.0'
  compile 'com.facebook.fresco:webpsupport:1.9.0'

  // For WebP support, without animations
  compile 'com.facebook.fresco:webpsupport:1.9.0'
}

Android Studioのバージョンが3.Xの人はcompileの代わりにimplementationを利用してください。

10
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
2