avoidchanges
avoidchanges
When I force killed my app and try running my app again by tapping on icon app, my log always detect "opened_from_tray" value as 1. How do I set this...
``` componentDidMount() { FCM.requestPermissions({badge: true, sound: true, alert: true}).then(()=>console.log('granted')).catch(()=>console.log('notification permission rejected')); FCM.getInitialNotification().then(notif => { console.log("INITIAL NOTIFICATION", notif) }); this.notificationListner = FCM.on(FCMEvent.Notification, notif => { console.log("Notification", notif); if(notif.local_notification){ console.log('LOG GOLD'); return;...