Daniel Nitu
Daniel Nitu
Had the same issue and was able to make it work with NgZone. ```typescript setLocalNotificationsCallback() { LocalNotifications.addOnMessageReceivedCallback(notification => this.ngZone.run(() => { console.log('NOTIFICATION TAPPED', notification) this.router.navigate(['main']) })).then(() => { console.log('NOTIFICATIONS CALLBACK...
I can confirm this is an issue as well. Any element targeted with the library's classes will have the styling applied at first, but as soon as you navigate to...
Any progress or updates on this?
We recently started getting this error as well, but only in the production environment. We use an env variable to store the key as a one line string and were...