From becb3696013a593ff928ae5377836f3218ccea10 Mon Sep 17 00:00:00 2001 From: DeokHyeon Wi Date: Tue, 17 Oct 2023 08:17:11 -0700 Subject: [PATCH] update: fresco 3.0.0 -> 3.1.0 (#41024) Summary: - ref: https://github.com/reactwg/react-native-releases/discussions/64#discussioncomment-7270126 With react-native@0.73.0-rc.2 and fresco@3.0.0, `dlopen failed: library "libnative-imagetranscoder.so"` error made crash in android. so, I patched fresco version to 3.1.0, so that resolves the crash error according to https://github.com/facebook/fresco/issues/2722#issuecomment-1749333089 this comment. ## Changelog: [ANDROID] [FIXED] - b1fccb05ccb306005dc7616a4eaaa182b0b1deaf bumped fresco version to 3.1.0. Pull Request resolved: https://github.com/facebook/react-native/pull/41024 Test Plan: after bumping fresco version, error not occurs. Reviewed By: cipolleschi Differential Revision: D50359564 Pulled By: cortinico fbshipit-source-id: d24caecc057bad4d9c94e378422ab18c106a7ee6 # Conflicts: # packages/react-native/gradle/libs.versions.toml --- packages/react-native/gradle/libs.versions.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/gradle/libs.versions.toml b/packages/react-native/gradle/libs.versions.toml index 85876f065cd..e6b790892f9 100644 --- a/packages/react-native/gradle/libs.versions.toml +++ b/packages/react-native/gradle/libs.versions.toml @@ -16,7 +16,7 @@ assertj = "3.21.0" download = "5.4.0" fbjni = "0.5.1" flipper = "0.201.0" -fresco = "3.0.0" +fresco = "3.1.0" infer-annotation = "0.18.0" javax-inject = "1" jsr305 = "3.0.2"