-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
React Native v0.71.0
uses an outdated version of jsc-android
(NDKs mismatch and causes crash)
#178
Comments
kraenhansen
changed the title
Current RN template app uses an outdated version of
React Native Feb 3, 2023
jsc-android
v0.71.0
uses an outdated version of jsc-android
kraenhansen
changed the title
React Native
React Native Feb 3, 2023
v0.71.0
uses an outdated version of jsc-android
v0.71.0
uses an outdated version of jsc-android
(NDKs mismatch and causes crash)
Kudo
added a commit
that referenced
this issue
Feb 5, 2023
# Why fixes #178 # How - manually pick necessary changes for ndk r23 from #169. it's ndk r23c which is newer than react-native 0.71's r23b. i cannot build jsc on top on r23b successfully. hopefully r23b <-> r23c is good for abi safety. - fix build errors for webkitgtk 2.26.1 + ndk r23. - unlike #169, this pr is still using shared c++ runtime. - update test project to 0.71 and build from source code because we need a patch to link libunwind in libjscexecutor.so. # Test Plan ci passed
closed via #179 |
Kudo
added a commit
to Kudo/jsc-android-buildscripts
that referenced
this issue
Nov 16, 2024
…mmunity#179) # Why fixes react-native-community#178 # How - manually pick necessary changes for ndk r23 from react-native-community#169. it's ndk r23c which is newer than react-native 0.71's r23b. i cannot build jsc on top on r23b successfully. hopefully r23b <-> r23c is good for abi safety. - fix build errors for webkitgtk 2.26.1 + ndk r23. - unlike react-native-community#169, this pr is still using shared c++ runtime. - update test project to 0.71 and build from source code because we need a patch to link libunwind in libjscexecutor.so. # Test Plan ci passed
Kudo
added a commit
that referenced
this issue
Nov 16, 2024
# Why fixes #178 # How - manually pick necessary changes for ndk r23 from #169. it's ndk r23c which is newer than react-native 0.71's r23b. i cannot build jsc on top on r23b successfully. hopefully r23b <-> r23c is good for abi safety. - fix build errors for webkitgtk 2.26.1 + ndk r23. - unlike #169, this pr is still using shared c++ runtime. - update test project to 0.71 and build from source code because we need a patch to link libunwind in libjscexecutor.so. # Test Plan ci passed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issue Description
As outlined in facebook/react-native#36052 there's a mismatch in NDK between the RN template app at
v0.71.0
and the250230.2.1
version ofjsc-android
. Upgrading React Native to usev294992.0.0
ofjsc-android
seems to relieve the issue, but this is notlatest
on NPM and marked as a pre-release on GitHub.Another potential fix is to publish a release of
250230.2.1
build with an updated NDK, matching that of the RN template app.The text was updated successfully, but these errors were encountered: