Closed ms88privat closed 3 years ago
Thanks this helped me! I had to make one other change per this thread: https://github.com/facebook/react-native/issues/29371
use_react_native!(:path => config[:reactNativePath])
RN version 0.63.2
Yarn workspace via lerna
Thanks guys! @ms88privat @SRandazzo was really stuck with this for long.
It be noted that, you have to change path to /node_modules/hermes-engine
and /node_modules/jsc-android
in android
and android/app
's build.gradle
file as well. To make it work on android.
How do I upgrade from 0.61.4 to 0.63.2? https://react-native-community.github.io/upgrade-helper/?from=0.61.4&to=0.63.2 Using upgrade-helper looks tedious to update line by line. I suppose @brunolemos is too busy or doesn't see a point to upgrade this repository.
https://github.com/exzos28/react-native-web-monorepo
with rn 0.63.3
I'll wait for 0.64 to upgrade this repo
I have a working setup in terms of building the app, but I am running into another problem. My web project uses react v17 and it seems there is a metro bundler / hoisting issue.
I keep getting errors with "invalid hook calls" as described here: https://github.com/facebook/react-native/issues/29722. Has anyone found a fix for this?
awesome, you need to pay attention at that make sure node_modules path is right
Hi, this repo is now updated to react-native v0.63.3 and create-react-app v4. I also added nextjs as an alternative to cra. Thanks!
The Podfile of IOS looks different now:
So in order to make it work, I needed to search & replace also
node_modules/@react-native-community
with../../node_modules/@react-native-community
and adjust the podfileuse_react_native!(:path => config["reactNativePath"])
withuse_react_native!(:path => './../../../node_modules/react-native/')
Hope that helps somebody else 👋