I'm using require(./image/xx.png)
to pass in the <Image>
source. It appears to happen on Android release build only.
The images are showing up but they are wrongly map all over the screen [refer:image]. It occurs whenever user installed new update over the old version.
If user uninstall and reinstall, then the app appears fine. But I couldn't force user to uninstall and reinstall each time new update is released to store.
"react-native": "0.66.1",
Example usage:
const IMG_LOGO = require('../../../assets/image/logo.png')
<Image source={IMG_LOGO} style={styles.imgLogo} resizeMode='contain'/>