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

react native issues and fixes

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.

Buy Me A Coffee

Similar Posts

8 Comments

  1. 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”
    ],

  2. 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”
    ],

Leave a Reply