mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
92a705b0e0
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 ``` <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 https://github.com/facebook/SoLoader/compare/v0.10.4...v0.10.5 Reviewed By: cortinico Differential Revision: D41691125 fbshipit-source-id: 7d63b090de66bc42c0b473b4bf85eb65442549dd
Building React Native for Android
See the Building from Source guide on the React Native website.
Running tests
When you submit a pull request CircleCI will automatically run all tests. To run tests locally, see Testing guide on the React Native website.