Voip(Voice over IP) missing in Xcode 9

i am using pushKit in my App but didUpdatePushCredentials delegate never called. xcode 9 not having Voice over IP

Capabilities --> Background Modes --> Voice over IP

enter image description here

i am following this link..implement pushkit

certificates generated again but not working.

Upvotes: 18

Views: 7072

Answers (4)

Sam
Sam

Reputation: 6170

I experimented with the settings and I only need to enable VOIP as a background mode.

Open Info.plist as source and add make sure it contains the following:

<key>UIBackgroundModes</key>
<array>
     <string>voip</string>
</array>

I also needed to enable Push Notifications like this: enter image description here

Upvotes: 1

Hasya
Hasya

Reputation: 9898

Might be this is a bug in Beta version because there is no official announcement or article or anything about redeeming VOIP background mode from XCode 9.

Or possible once you implement Callkit , VOIP background mode automatically considered.

I suggest wait for XCode 9 official version.

Updated answer

With XCode 9 and iOS 11, Callkit is being compulsory for VOIP implementation. Background mode ( VOIP ) will be automatically activated once integrating Callkit.

Try to make call from WhatsApp, that call history will be available in native phone call app as well.

Updated answer -> You are can add background modes support manually

<key>UIBackgroundModes</key>
<array>
    <string>audio</string>
    <string>voip</string>
    <string>fetch</string>
    <string>remote-notification</string>
</array>

Upvotes: -2

Amitabha
Amitabha

Reputation: 1662

according to Apple forum discussion this is the answer

"In iOS 10, you should be using PushKit for handling push notifications for incoming VoIP calls. So when you build your app against the iOS 10 SDK, you need to move over to PushKit (which can be supported all the way back to iOS 8, but once you move to iOS 10 our recommendation is to update your minimum deployment target to iOS 9). "

original link of the answer: https://forums.developer.apple.com/thread/50106

Upvotes: 1

Seref Bulbul
Seref Bulbul

Reputation: 1173

Although, Xcode 9 is announced officially, still there isn't VoIP on the capabilities.

I solved my problem by opening Info.plist as a source code and adding "voip" to UIBackgroundModes manually.

<key>UIBackgroundModes</key>
<array>
    <string>audio</string>
    <string>voip</string>
    <string>fetch</string>
    <string>remote-notification</string>
</array>

Upvotes: 31

Related Questions