WARN new NativeEventEmitter() was called with a non-null argument without the required removeListeners method.
I am using the Microphone continuous async example in a React Native VoiceComponent. At the top I am ignoring these logs on the VoiceComponent:
import { LogBox } from 'react-native';
LogBox.ignoreLogs(['new NativeEventEmitter', 'Require cycle']);
When I call the VoiceComponent within another component in the return object, I get these warnings. The error is triggered when I navigate to the component with the VoiceComponent
WARN
new NativeEventEmitter()
was called with a non-null argument without the requiredremoveListeners
method.I am using the Microphone continuous async example in a React Native
VoiceComponent
. At the top I am ignoring these logs on the VoiceComponent:When I call the VoiceComponent within another component in the return object, I get these warnings. The error is triggered when I navigate to the component with the VoiceComponent
LogBox.ignoreAllLogs();
as well does not work.