-
Notifications
You must be signed in to change notification settings - Fork 88
[iOS][2.0.0] Not awake closed app when received voip call. #48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Have you got any workaround for this? |
Please read the new notes in the readme to see if there any missed part. |
same issue @william-normann , @r0b0t3d , @tuanbm Have you solved it yet? |
Have you find the cause? I know ios 13.3 seems have issues, butsolved after upgrade to ios 13.4 |
I'm running into a similar issue. It seems like |
As a workaround you can |
It's the problem with iOS version < 13, I checked with iOS 12. |
I was having the issue when testing on iOS 13.4 |
Hi, I have the same issue in iOS 13.4.1 i can't wake up app. |
did you guys even managed to use it with the app minimized? I'm struggling with it and dont find anything to make it work :( |
The problem is that the method didReceiveIncomingPushWithPayload in AppDelegate.m doesn't get called when the app is killed. This results in the system trying to invoke Callkit a few times but fails and it then drops all attempts to start your application on a background push (the console log will just show "Dropped on the floor"). To enable the retries to call this method you need to reinstall your application. I'm really new at iOS-development so I have no idea why this method doesn't get called or how you call it from a push. |
How exactly did you get this workaround to work? I've been trying this and it gives me weird bugs when the call is closed before the duplicate comes in |
It's a little bit tricky that the duplicated push should be sent just after the 1st one came, like: send the 1st one, delay 1s, then send the 2nd one. 2 notification should contain the same uuid and in the code, you should call the api to show the incoming call UI with the same UUID ( that means 2nd one will be ignored if the UI is still showing because of the 1st one) |
Released 3.0.0, this should be fixed. Please check doc and test, especially |
We use
voip-push-notification
&react-native-callkeep
on iOS to awake app from background mode / closed state when received a voip call.It work fine in background mode. But when app in closed state. Nothing happen, no notifcation, no automation awake app.
We met this issue from version 2.0.0 and react native 0.60.6. V1 and react-native 0.59 work fine.
any ones met the same issue with us? Can we resolve this problem?
The text was updated successfully, but these errors were encountered: