react-native-background-timer
react-native-background-timer copied to clipboard
Warning appears: new NativeEventEmitter()` was called with a non-null argument without the required `removeListeners` method
Hello, after upgrading to RN 0.66 App shows the following:

So after following the stacktrace I got to this:
which actually brings me to your library:

Many libraries are experiencing the same issue like here: https://github.com/react-native-netinfo/react-native-netinfo/pull/487
It would be great to be fixed with your next release.
Cheers
I had a similar problem that made jest failing #367
Same issue here
same.
I have the same issue.
same.
Any fix so far, experiencing same issue
Since the library hasn't been updated in years, I'm confident the issue is simply that it is out of date, as this stackoverflow post suggests and the only thing you can really do is just hide the message like this:
import { LogBox } from 'react-native';
LogBox.ignoreLogs(['new NativeEventEmitter']);
To fix this problem see:
- https://github.com/facebook/react-native/blob/6956d4f261130168a72890040ab6630702968e2c/packages/react-native/Libraries/EventEmitter/NativeEventEmitter.js#L52-L72
- https://stackoverflow.com/a/69650217
+1 was this ever resolved?