Skip to content

Instantly share code, notes, and snippets.

@vedovato
Last active October 8, 2018 23:16
Show Gist options
  • Save vedovato/2b860ca98c23f58bd2418f2cb6b3a23c to your computer and use it in GitHub Desktop.
Save vedovato/2b860ca98c23f58bd2418f2cb6b3a23c to your computer and use it in GitHub Desktop.
react-native: Images doesn't show up on android release apk (SOLUTION)

This seem to be necessary now if you use image assets in your project. Without executing the below command, my release android app variant won't show any required images 🤔

Paste this into your terminal, inside the project folder

react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment