How to fix NativeEventEmitter warning

Posted on

in

,

I was getting the warning:

new NativeEventEmitter() was called with a non-null argument without the required removeListeners method.

I was using React Native Sound and to fix the warning I add the below lines of code to this file in the react-native-sound module: react-native-sound/android/src/main/java/com/zmxv/RNSound/RNSoundModule.java

// Explicitly implement addListener
  @ReactMethod
  public void addListener(String eventName) {
    // Required for RN built-in Event Emitter Calls.
  }

  // Explicitly implement removeListeners
  @ReactMethod
  public void removeListeners(Integer count) {
    // Required for RN built-in Event Emitter Calls.
  }

Leave a Reply

Your email address will not be published. Required fields are marked *

About me

Mark Wong is a front end developer with 10+ years experience. Most of his knowledge of HTML5, CSS and Js is self taught.

Calendar

December 2024
M T W T F S S
 1
2345678
9101112131415
16171819202122
23242526272829
3031