[RN][iOS] Use precompipled binaries by default#54895
Closed
cipolleschi wants to merge 1 commit into
Closed
Conversation
|
@cipolleschi has imported this pull request. If you are a Meta employee, you can view this in D89277683. |
|
@cipolleschi merged this pull request in df9d31b. |
Collaborator
|
This pull request was successfully merged by @cipolleschi in df9d31b When will my fix make it into a release? | How to file a pick request? |
1 task
kmichalikk
added a commit
to software-mansion/react-native-screens
that referenced
this pull request
Jan 20, 2026
## Description This PR overrides the new default for downloading prebuild binaries for RN core since 0.84. We need the source code for debugging in our Example app. Relevant commit from RN: react/react-native#54895 ## Changes Env vars: RCT_USE_PREBUILT_RNCORE is set to '0' in the Podfile. From READMEs and comments: > ## - RCT_USE_PREBUILT_RNCORE: If set to 1, it will use the release tarball from Maven instead of building from source. ## Test plan Make sure FabricExample builds & the source code is available in XCode. ## Checklist n/a - [x] Ensured that CI passes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary:
This change set up React native to use the precompiled binaries by default.
Users can still turn them off by passing
RCT_USE_PREBUILT_RNCORE=0 bundle exec pod installBy default, RNTester will still build from source.
Changelog:
[iOS][Changed] - Use prebuild by default
Test Plan:
Tested on a React native app created using RN 0.83.0