diff --git a/Libraries/AppRegistry/AppRegistry.js b/Libraries/AppRegistry/AppRegistry.js index f36f88132..157cbaa37 100644 --- a/Libraries/AppRegistry/AppRegistry.js +++ b/Libraries/AppRegistry/AppRegistry.js @@ -74,7 +74,9 @@ var AppRegistry = { ); invariant( runnables[appKey] && runnables[appKey].run, - 'Application ' + appKey + ' has not been registered.' + 'Application ' + appKey + ' has not been registered. This ' + + 'is either due to a require() error during initialization ' + + 'or failure to call AppRegistry.registerComponent.' ); runnables[appKey].run(appParameters); },