Skip to content

Commit 92a705b

Browse files
simpletonfacebook-github-bot
authored andcommittedDec 5, 2022
deps(android): bump soloader to 0.10.5 (#35569)
Summary: Pull Request resolved: #35569 SoLoader should not be used on Android 7+ unless the app is delivered as [Exopackage](https://buck.build/article/exopackage.html), requires [Android Native Library Merging](https://engineering.fb.com/2018/01/23/android/android-native-library-merging/) or uses [Superpack](https://engineering.fb.com/2021/09/13/core-data/superpack/) compression. The 0.10.5 soloader would direclty use system linker on Android 7+ by default. you can change this behavior via adding below meta-data in app's manifest file ``` <application ...> <meta-data tools:replace="android:value" android:name="com.facebook.soloader.enabled" android:value="true" /> </application> ``` ## Changelog [Android] [Changed] - Bump Soloader to 0.10.5 facebook/SoLoader@v0.10.4...v0.10.5 Reviewed By: cortinico Differential Revision: D41691125 fbshipit-source-id: 7d63b090de66bc42c0b473b4bf85eb65442549dd
·
v0.81.0-rc.0latest
1 parent 56b10a8 commit 92a705b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ReactAndroid/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ OKIO_VERSION=2.9.0
1919
POWERMOCK_VERSION=2.0.2
2020
PROGUARD_ANNOTATIONS_VERSION=1.19.0
2121
ROBOLECTRIC_VERSION=4.4
22-
SO_LOADER_VERSION=0.10.4
22+
SO_LOADER_VERSION=0.10.5
2323
SWIPEREFRESH_LAYOUT_VERSION=1.0.0
2424

2525
# Native Dependency Versions

0 commit comments

Comments
 (0)
Please sign in to comment.