App Release Crashes t is not a function - react-native

the debug mode working just fine and smooth. no any errors.
i spent more than 3 days but could not find a solution. please help and thanks in advance.
when it's about releasing the app from xcode the app crashes
package.json file
error in xcode console
Unhandled JS Exception: t is not a function.
*** Terminating app due to uncaught exception 'RCTFatalException: Unhandled JS Exception: t is not a function.

there was a typo error in my store.js
it was such a nightmare to figure out what causing such crash.

Related

White screen due to the error: Terminating app due to uncaught exception 'NSInternalInconsistencyException'

A react-native app I inherited throws this error Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'rootViewController is not of type HomeIndicatorView as expected.'
The app on load shows the splash screen and gets stuck on the screen below. At the moment, I don't know where to look as most of the solutions online doesn't lead anywhere.
PS. I'm using MacBook M1 pro, incase this is an issue with M1's.

Error while running Expo-ReactNative app in Iphone Simulator

I have an expo-React native project. The Project is getting build correctly and i am able to generate .apk and .ipa files for it.
But when I try to run the app in the iPhone simulator. I am getting the below error:-
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'NSBundle must contain the expected assets'
I was also having this issue and turned out to be my own fault due to changes I'd made in AppDelegate.m.
These caused [self initializeReactNativeApp]; to not be called when building for DEBUG.
Make sure initializeReactNativeApp is being called correctly in application:(UIApplication *)application didFinishLaunchingWithOptions in your app delegate.

Native module cannot be null, but the app works fine

react-native run-ios successfully builds the project and the app is started at simulator, however, I got the error below, I tried to get more details in the Xcode log, I only got this:
[fatal][tid:com.facebook.react.ExceptionsManagerQueue] Unhandled JS Exception: Native module cannot be null.
How can I debug this error? is it just a warning? I can see fatal in Xcode log.
If I press on Dismiss in simulator, the error below gone and the app seems to work fine..
Any idea?

React Native Fatal RCTBatchedBridge error on launch

When lauching the app it fails with the following fatal error:
TypeError: methods.forEach is not a function. (In 'methods.forEach', 'methods.forEach' is undefined)
This only happens in the iOS simulator. The app runs fine on a device.
The RN stack trace doesn't show much useful information:
Screenshot of error
Any suggestions would be hugely appreciated!

Got JS Exception: ReferenceError: Can't find variable: process

After upgrading from react-native 0.26 to 0.29 (and running react-native upgrade), I'm getting the following error in the android debugger:
Got JS Exception: ReferenceError: Can't find variable: process
And this error message in the android emulator
java.lang.RunTimeException: ReferenceError: can't find variable process
(http://10.0.2.2:8081/index.android.bundle (...)
I haven't changed any of my app javascript since upgrading, and everything ran without errors before so I'm assuming the problem isn't in the javascript, but rather the change of react versions has removed the 'process' variable?
Even loading an empty index file (a single react component that does nothing) still results in the same error.
Had the same issue:
java.lang.RuntimeException: java.util.concurrent.ExecutionException:
java.lang.RuntimeException: ReferenceError: Can't find variable: process
Fixed by upgrading the React to the latest compatible version, 15.2.1 in my case:
npm i react#15.2.1 --save
I had this issue, it turns out my problem was that I didn't stop and restart the packager after upgrading react-native.