Bundlejs error on release build in Xcode (react-native)
Bundlejs error on release build in Xcode (react-native) For some reason I am getting the following error when building a release version of my application via react-native. *** Terminating app due to uncaught exception 'RCTFatalException: Unhandled JS Exception: t.typeof is not a function. (In 't.typeof("function"==typeof Symbol?Symbol.iterator:"@@iterator")', 't.typeof' is undefined) (/Users/../THEAPP.app/main.jsbundle:11)', reason: 'Unhandled JS Exception: t.typeof is not a function. (In 't.typeof("function...' This is the source of the code that has the above error that I found in my bundlejs file: !(function(e){"use strict";var r,t=e.babelHelpers={};t.typeof="function"==typeof Symbol&&"symbol"===t.typeof("function"==typeof Symbol?Symbol.iterator:"@@iterator")? I have tried both of these methods of a release build: react-native bundle --entry-file index.js --platfor...
