Pushokit voip push notifications are not accepted on iOS8.0.2

I implemented new pushkit voip push notifications, and so far it has worked correctly on all iOS8 devices that I tested except one. I have an iPhone iOS 8.0.2 that does not receive any click of a voip button. It registers correctly when I receive pushRegistry: didUpdatePushCredentials: forType: delegate called I successfully tested previous remote clicks (registerForRemoteNotifications), but none of the voip push sent was received.

So my questions are:

* Has anyone experienced the same behavior for pushkit voip push notifications?

* Maybe this is due to the version of iOS ( iOS 8.0.2 )?

* Can someone who has this version ( iOS 8.0.2 ) implement pushkit voip push and try to get voip push to get rid of the version problem?

If you need to embed pushkit voip push notifications, you can check my answer at https://stackoverflow.com/a/2126168/

+7
push ios iphone voip
source share
2 answers

It works only on iOS8. With this, the SDK only works on iOS 8.1 (at the time of writing, this is beta 1). The reason for this is that in 8.0 the linked compiler is dynlib and cannot find the push set structure for 32 bits when working on 64-bit hardware. But for now, you need to compile for armv7 and armv7s.

+2
source share

You need to configure Voip Push on the server side, and not just implement it in code.

-one
source share

All Articles