Skip to content

Commit

Permalink
bump SoLoader to 0.9.0 (#29821)
Browse files Browse the repository at this point in the history
Summary:
SoLoader fixed crash on Android 4.1, and includes many improvements and fixes https://github.com/facebook/SoLoader/releases/tag/v0.9.0. Also Fresco 2.3.0 depends on it, and will create a PR soon to bump Fresco.

## Changelog

[Android] [Changed] - Bump SoLoader to 0.9.0

Pull Request resolved: #29821

Test Plan: CI is green

Reviewed By: fkgozali

Differential Revision: D23477538

Pulled By: mdvacca

fbshipit-source-id: d2d982d5c5c84fc173dc66dfe069713ca90711a8
  • Loading branch information
dulmandakh authored and facebook-github-bot committed Sep 2, 2020
1 parent 87b91c0 commit 7465239
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ReactAndroid/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ FEST_ASSERT_CORE_VERSION=2.0M10
ANDROIDX_TEST_VERSION=1.1.0
FRESCO_VERSION=2.0.0
OKHTTP_VERSION=3.12.12
SO_LOADER_VERSION=0.8.2
SO_LOADER_VERSION=0.9.0

BOOST_VERSION=1_63_0
DOUBLE_CONVERSION_VERSION=1.1.6
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ fb_native.android_library(
visibility = ["PUBLIC"],
)

fb_native.android_prebuilt_aar(
fb_native.prebuilt_jar(
name = "annotation-binary",
aar = ":annotation-binary-aar",
binary_jar = ":annotation-binary.jar",
)

fb_native.prebuilt_jar(
Expand All @@ -26,19 +26,19 @@ fb_native.android_prebuilt_aar(
)

fb_native.remote_file(
name = "annotation-binary-aar",
sha1 = "ae6d46195467467fae746c6225f79ac41e7039e8",
url = "mvn:com.facebook.soloader:annotation:aar:0.8.2",
name = "annotation-binary.jar",
sha1 = "dc58463712cb3e5f03d8ee5ac9743b9ced9afa77",
url = "mvn:com.facebook.soloader:annotation:jar:0.9.0",
)

fb_native.remote_file(
name = "nativeloader-binary.jar",
sha1 = "86cb3da9384707034355ac1e84e9a8cf6de80f7c",
url = "mvn:com.facebook.soloader:nativeloader:jar:0.8.2",
sha1 = "677c7fbfcc847d7eb6082048d07b10afd4cff898",
url = "mvn:com.facebook.soloader:nativeloader:jar:0.9.0",
)

fb_native.remote_file(
name = "soloader-binary-aar",
sha1 = "8575dbdec464207a19273bd3c09d758a08fa655c",
url = "mvn:com.facebook.soloader:soloader:aar:0.8.2",
sha1 = "6e138af1dd29ceabf5bace2d24dc4333f304d104",
url = "mvn:com.facebook.soloader:soloader:aar:0.9.0",
)

1 comment on commit 7465239

@Prernabudh
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dulmandakh does this fix the common react native error of soLoader.java:
Fatal Exception: java.lang.UnsatisfiedLinkError
couldn't find DSO to load: libhermes.so result: 0

We have been facing this error in production for a long time.

Please sign in to comment.