Module AppRegistry is not a registered callable module (calling runApplication) React Native Error Fix
While developing with react native, you may come across unexpected react native errors. One react native error I recently faced is as following:
Module AppRegistry is not a registered callable module (calling runApplication) React Native Error Fix
Fixing this react native issue is pretty simple. All, you need to do is to terminate nodeJS process with pkill node command and rebuild the app with either react-native run-android or react-native run-ios command.
This saved my life. Thanks.
But didn’t save mine 😢😢
This saved my life. Thanks.
But didn’t save mine 😢😢
I searched for an answer for this problem for a week and a half and heres what fixed it for me
in your app.json file under expo add
“platforms”: [
“ios”,
“android”,
“web”
],
I searched for an answer for this problem for a week and a half and heres what fixed it for me
in your app.json file under expo add
“platforms”: [
“ios”,
“android”,
“web”
],
Thank you
Thank you