react native code changes are not reflecting on ios testflight and live app, Changes are not reflecting after download and install on IOS, Xcode iOS Release build keeps archiving old version of React native, React Native codePush rollback after restart, React-native Javascript changes through codepush not getting reflected on iPhone,

react native code changes are not reflecting on ios testflight and live app

react native code changes are not reflecting on ios testflight and live app

Basically, these issues are coming in IOS 14. Use the below methods to resolve the issues:-

1) make sure that the latest main.jsbundle is bundled with the latest ios code. You can delete this file from ios folder of your react-native project and hit the command pod install.

2) Hit the below command to reflect the changes:-

react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios
or
npx react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios

Hope this code snippet will help you.

react native code changes are not reflecting on ios testflight and live app,
Changes are not reflecting after download and install on IOS,
Xcode iOS Release build keeps archiving old version of React native,
React Native codePush rollback after restart,
React-native Javascript changes through codepush not getting reflected on iPhone,

Post Created 120

Leave a Reply

Related Posts

Begin typing your search above and press enter to search. Press ESC to cancel.

Back To Top