For me, the problem was that he could not create a JS package. It does not indicate a build error with Xcode, so you may not know this. To find the error, run the following command.
react-native bundle --platform ios --dev false --entry-file index.ios.js --bundle-output./ios/release/main.jsbundle --assets-dest./ios/release/main.jsbundle
For me, the error was with the lack of the PureRenderMixin component. This solution can be found here: https://github.com/facebook/react-native/issues/13078 . Basically you need to manually set response@16.0.0-alpha.3. This can be done by running this command.
npm --save react@16.0.0-alpha.3
This problem is now happening for everyone, because new versions of reactive alpha (in particular, alpha-5) are released and they destroy the built-in reactive assemblies.
urbancvek Mar 26 '17 at 13:10 2017-03-26 13:10
source share