react-native iOS app not showing static/local assets (images) after deploying

Please check XCode console log first. You will find that the app couldn’t find out those specific image assets on path “{project name}.app/assets/resources/..”

enter image description here

So, you need to put images on those fixed paths, unlike iOS native App. Lets add “assets” folder to your ‘Copy Bundle Resources’.

Step 1:
Select XCode project -> Build Phases -> Copy Bundle Resources

Step 2
enter image description here

Step 3
enter image description here

Step 4
enter image description here

Leave a Comment