Local images are not visible in React-Native app release build
Solved by following answer of Chiranjhivi Ghimire Steps -
- Created assets folder at ../android/app/src/main/
- copy and paste this command in command prompt
react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/
- enter this command in cmd gradle assemblerelease.
- done
equivalent solution for ios can be found at link