Skip to content

Commit 184ce7a

Browse files
authored
fix: issue with animating giphy on android with latest RN version (#3092)
1 parent 9793203 commit 184ce7a

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

examples/SampleApp/android/app/build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,14 @@ dependencies {
126126
implementation platform('com.google.firebase:firebase-bom:29.3.0')
127127
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.0.0")
128128

129-
// For animated GIF support
130-
implementation 'com.facebook.fresco:animated-gif:2.6.0'
131-
132129
// For React native video
133130
implementation "androidx.appcompat:appcompat:1.0.0"
134131

132+
// For animated GIF support
133+
implementation('com.facebook.fresco:animated-gif:3.6.0')
135134
// For WebP support, including animated WebP
136-
implementation 'com.facebook.fresco:animated-webp:2.6.0'
137-
implementation 'com.facebook.fresco:webpsupport:2.6.0'
135+
implementation('com.facebook.fresco:animated-webp:3.6.0')
136+
implementation('com.facebook.fresco:webpsupport:3.6.0')
138137

139138
// For Firebase Crashlytics and Analytics support
140139
implementation 'com.google.firebase:firebase-crashlytics'

examples/TypeScriptMessaging/android/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ dependencies {
120120
// For React native video
121121
implementation("androidx.appcompat:appcompat:1.0.0")
122122
// For animated GIF support
123-
implementation('com.facebook.fresco:animated-gif:2.6.0')
123+
implementation('com.facebook.fresco:animated-gif:3.6.0')
124124
// For WebP support, including animated WebP
125-
implementation('com.facebook.fresco:animated-webp:2.6.0')
126-
implementation('com.facebook.fresco:webpsupport:2.6.0')
125+
implementation('com.facebook.fresco:animated-webp:3.6.0')
126+
implementation('com.facebook.fresco:webpsupport:3.6.0')
127127
}

0 commit comments

Comments
 (0)