You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will need to be updated with the accordance to the above proposal:
# Example for a library called `mylibrary` which used to# link against `react_render_core`, `react_render_uimanager` and `jsi`# but from 0.76 will just link against `reactnative` and `jsi`- target_link_libraries(mylibrary - ReactAndroid::react_render_core - ReactAndroid::react_render_uimanager - ReactAndroid::jsi- )+# This if-then-else can be removed once this library does not support version below 0.76+if (REACTNATIVE_MERGED_SO)+ target_link_libraries(mylibrary ReactAndroid::reactnative)+else()+ target_link_libraries(mylibrary + ReactAndroid::react_render_core + ReactAndroid::react_render_uimanager+ )+endif()+target_link_libraries(mylibrary ReactAndroid::jsi)
It would be best to start work on upgrading it relatively soon to release of the first release candidate of 0.76 which would allow us to catch any problems quickly and possibly fix the issues (if any are found) upstream.
The text was updated successfully, but these errors were encountered:
Description
Starting with React Native 0.76 the number of shared libraries shipped by the framework will be greatly reduced. This will affect the new-architecture part of the library as it links against quite a few of them.
This will need to be updated with the accordance to the above proposal:
It would be best to start work on upgrading it relatively soon to release of the first release candidate of 0.76 which would allow us to catch any problems quickly and possibly fix the issues (if any are found) upstream.
The text was updated successfully, but these errors were encountered: