Ivailo

Results 32 comments of Ivailo

@leonardo409188 can't you use https://reactnative.dev/docs/appstate to check if the app is in foreground on Android and if so - do not navigate? Or it always results in 'active'? Did you...

@leonardo409188 Thanks a lot for answering. It seems there's no other way to properly detect which state did the notification came from. One thing I'm wondering is if node_modules/react-native-pusher-push-notifications/android/src/main/java/com/b8ne/RNPusherPushNotifications/NotificationsMessagingService.java on...

@leonardo409188 I managed to make a differentiation between notification coming in foreground and others. In node_modules/react-native-pusher-push-notifications/android/src/main/java/com/b8ne/RNPusherPushNotifications/PusherWrapper.java before line 88, add: map.putString("appState", "active"); This is adding the appstate flag with 'active'...

@leonardo409188 Ah, I see. As mentioned, I logged the notification data and it's present when the app is opened from killed state. When I have enough time, I'll try to...

@leonardo409188 I found what the problem was, seems like a race condition. The 'notification' event from native when opening the app from killed state via notification was fired before the...

@leonardo409188 The last thing I did was calling just .setInstanceId and then on('notification', ...) listener as early as possible -first thing in App.js and it seems to catch the notification...

> @hypnocill did you find any solution for this Just the workaround I described in my last comment

@darshitDev did you find the reason why the screen sharing is not working?

I managed to get it working on Android and on iOS. Here's the topic where I explain the issues first and then my debugging process: https://community.jitsi.org/t/screen-sharing-on-moible-is-not-working/118460/11 Bear in mind that...