Skip to content

Commit 2500d45

Browse files
committed
Merge branch 'develop' of github.com:GetStream/stream-chat-react-native into V8
2 parents 3893076 + 184ce7a commit 2500d45

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
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
}

package/native-package/src/optionalDependencies/takePhoto.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ export const takePhoto = ImagePicker
8888
const date = new Date().toISOString().replace(clearFilter, '_');
8989
return {
9090
cancelled: false,
91-
name: 'video_recording_' + date + '.' + asset.fileName.split('.').pop(),
92-
size: asset.size,
91+
name: 'image_' + date + '.' + asset.uri.split('.').pop(),
92+
size: asset.fileSize,
9393
type: asset.type,
9494
uri: asset.uri,
9595
...size,

0 commit comments

Comments
 (0)