I usually display images like this:
<Image source={require('../../assets/images/color/stuff.png')} /><Image source={require('../some-other-path/picture.png')} />
In the past, I could have any arbitrary path I want, in any folder.
Then, when I build for release, I do this before I Build > Run:
react-native bundle --platform ios --dev false --entry-file index.js --bundle-output ./ios/main.jsbundle
Since upgrading to XCode, whenever I do a release build, my images no longer appear. In dev build, the images are visible.
I have tried --assets-dest ./some-folder
, but the results are same.
What could cause this change?