Tips and tricks

React Native - Change Packages
Posted on July 4 2025 / in React Native
Run your npm install, then
cd ios
pod install
cd ..
npx react-native run-ios
Restart Metro clearing the cache:
npx react-native start --reset-cache
if you are having problems you can use --repo-update
pod install --repo-update
clean xcode cache
xcodebuild -alltargets clean
xcodebuild clean -workspace FoodPlanner.xcworkspace -scheme FoodPlanner -configuration Debug
If you are having problems with Sandbox rsync errors
Go to XCode, Build Options and disable User Script Sandboxing
ENABLE_USER_SCRIPT_SANDBOXING
Update Angular if there are peer dependencies issues
How to start a React Native APP for Development ( After initial install )