Skip to content Skip to sidebar Skip to footer

Image Resources Disappearing From React-native App

I'm having a strange problem that I cant quite figure out the reason for. I have an app created in react-native and I'm using react-native-navigation to handle the navigation. The

Solution 1:

Pure guesswork in the comments, but turned out that react-native run-android doesn't automatically bundle your assets as it's a development build. If you need to test the build while completely disconnected from your computer, you can install using a release build using --variant=release as that will always bundle your assets with the apk.


Post a Comment for "Image Resources Disappearing From React-native App"