You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inside my backgroundMessaging function I have this code:
constbackgroundMessaging=async(message)=>{// handle your messageconsole.log(message);constlog={logMessage: 'this is the event emitter log'}invokeApp({data: log});returnPromise.resolve();}exportdefaultbackgroundMessaging;
When the app is in the background the above function logs the message, but invokeApp does not seem to be called because the DeviceEventEmitter does not log anything: