From 92a705b0e0654429068d9de130f2216373124bbb Mon Sep 17 00:00:00 2001 From: Sim Sun Date: Mon, 5 Dec 2022 11:51:56 -0800 Subject: [PATCH] deps(android): bump soloader to 0.10.5 (#35569) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/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 ``` ``` ## Changelog [Android] [Changed] - Bump Soloader to 0.10.5 https://github.com/facebook/SoLoader/compare/v0.10.4...v0.10.5 Reviewed By: cortinico Differential Revision: D41691125 fbshipit-source-id: 7d63b090de66bc42c0b473b4bf85eb65442549dd --- ReactAndroid/gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactAndroid/gradle.properties b/ReactAndroid/gradle.properties index 557a5f07e5363e..951f8874bc5c83 100644 --- a/ReactAndroid/gradle.properties +++ b/ReactAndroid/gradle.properties @@ -19,7 +19,7 @@ OKIO_VERSION=2.9.0 POWERMOCK_VERSION=2.0.2 PROGUARD_ANNOTATIONS_VERSION=1.19.0 ROBOLECTRIC_VERSION=4.4 -SO_LOADER_VERSION=0.10.4 +SO_LOADER_VERSION=0.10.5 SWIPEREFRESH_LAYOUT_VERSION=1.0.0 # Native Dependency Versions