I have a React-Native app I\'m trying to deploy in Release mode to my phone. I can bundle the app to the phone. Database, Video and audio assets are all in there but no imag
are the images in xcode or in the file system?, i dont see an --assets-dest in your bundle parameters
react-native bundle --minify --dev false --assets-dest ./ios --entry-file index.ios.js --platform ios --bundle-output ios/main.jsbundle
also add the assets folder to xcode like the bundle.
note that the image assets are only copied if they are required correctly, see the documentation