I have a react native ios and it was working fine, suddnly it's working only in Xcode but not in terminal using this command:
react-native run-ios
react-native run-ios --device
Both of command are not working in the root directory, I tried to delete node_modules folder then run:
npm install; react-native link;
Unfortunatly it's not working, here are my logs:
Any Help!
Seems that you have a lot of missing libraries which are not downloaded for some reason, I recommend that you should delete all downloadable libs then start over again:
npm install
cd ios; pod install; cd../
react-native link
That's it
I was able to solve it by upgrading node.
brew upgrade node
type this in terminal.
There could be various reasons, in my case it was due to some of the libraries being used and I was able to figure out the solution by changing the Build Active Architecture Option.
Setting the target->Build Settings->Build Active Architecture Only option for both the app and Pods target (for both debug and Release) to Yes made it work with react native in command line while setting the above options to No made them work with Xcode.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With