RE (don't have enough experience points to reply there): "In my bundle command for my production build I tell it to generate a source map" How to add sourcemap in React Native for Production?
In Xcode Version 7.3 beta 3, I went to [My Project] > Build Phases > Bundle React Native code and images
Under: export NODE_BINARY=node ../node_modules/react-native/packager/react-native-xcode.sh
I added: cd /Users/andresn/dev/[My Project] react-native bundle --platform ios --entry-file index.ios.js --dev false --bundle-output ./ios/main.jsbundle --assets-dest ./ios --sourcemap-output ./sourcemap.js
Is something like this what he meant, or is there a more proper way of doing this?