I\'ve noticed that file main.jsbundle
file is missing from the project and am not sure of how to fix it, should I delete the file / is there a step I can perform to
The problem can be resolved as follows
react native
command line$ react-native bundle --entry-file ./index.ios.js --platform ios --bundle-output ios/main.jsbundle
using this in the root of the react native projectmain.jsbundle
file is generated add it back to the Add Files to Project
optionre-build
Update For the asset destination to be set they have to be in same folder.
Try this,it would create the asset folder
$ react-native bundle --entry-file ./index.ios.js --platform ios --bundle-output ios/main.jsbundle --assets-dest ./ios