Error calling RCTDeviceEventEmitter.emit in ReactNative

Viewed 7525

I am begginer in ReactNative ... After install the first project in my Device This error was displayed:

Error calling RCTDeviceEventEmitter.emit

What is the problem ? enter image description here

3 Answers

That's how I resolved it.

Terminate your metro bundler > react-native link > react-native run-ios

It was not bundling because of some errors which are not showing into the emulator but just bundling was failed. After I re-bundled the package from starting, the error was resolved.

Related