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
> When linking against the iOS 13 SDK or later, your implementation of this method must report notifications of type voIP to the CallKit framework by calling the reportNewIncomingCall(with:update:completion:) method
23
+
> When linking against the iOS 13 SDK or later, your implementation of this method must report notifications of type VoIP to the CallKit framework by calling the `reportNewIncomingCall(with:update:completion:)` method
24
24
>
25
25
> On iOS 13.0 and later, if you fail to report a call to CallKit, the system will terminate your app.
VoIP pushes were intended to specifically support incoming call notifications and nothing else.
51
51
52
-
If you were using voip push to do things other than `nootify incoming call`, such as: `cancel call` / `background updates`...etc, You should change to use [Notification Service Extension](https://developer.apple.com/documentation/usernotifications/unnotificationserviceextension), it contains different kind of pushs.
52
+
If you were using voip push to do things other than `nootify incoming call`, such as: `cancel call` / `background updates`...etc, You should change to use [Notification Service Extension](https://developer.apple.com/documentation/usernotifications/unnotificationserviceextension), it contains different kind of pushes.
53
53
54
54
To use`Background Push` to [Pushing Background Updates to Your App](https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/pushing_background_updates_to_your_app),
55
55
You should:
56
-
1. Make sure you enabled `Xcode` -> `Signing & Capabilities` -> `Background Modes` -> `Remote Notifications` enabled
56
+
1. Make sure you enabled `Xcode` -> `Signing & Capabilities` -> `Background Modes` -> `Remote Notifications`
57
57
2. When sending background push from your APN back-end, the push header / payload should set:
58
58
* content-available = 1
59
59
* apns-push-type = 'background'
@@ -204,7 +204,7 @@ This usually
204
204
#### JS API:
205
205
206
206
*`registerVoipToken()` --- JS method to register PushKit delegate
207
-
*`onVoipNotificationCompleted(notification.uuid)` --- JS mehtod to tell PushKit we have handled received voip push
207
+
*`onVoipNotificationCompleted(notification.uuid)` --- JS method to tell PushKit we have handled received voip push
0 commit comments