Using react-native v0.63.4, and all the local image load fine in development mode
<Image
source={require('../assets/images/xyz.png')}
style={styles.img}
resizeMode="cover"
/>
but once we built it in release mode or test flight, all the image loaded with require
is not being rendered.
What I have found so far:
- Doesn't seem to be https://github.com/facebook/react-native/issues/29268, since I am using 0.63.4
- Examined the IPA file, and it does contain all the images
Thanks in advance!