CopyPastor

Detecting plagiarism made easy.

Score: 0.9154254431089666; Reported for: String similarity Open both answers

Possible Plagiarism

Reposted on 2023-04-01
by sbca68

Original Post

Original - Posted on 2023-04-01
by sbca68



            
Present in both answers; Present only in the new answer; Present only in the old answer;

I have a similar problem with linphone-sdk and CallKit. And the problem in my case was missing audio key in Info.plist. You need to have these keys, if you want you app works with AudioSession in background mode.
<key>UIBackgroundModes</key> <array> <string>voip</string> <string>audio</string> </array>

I have a similar problem with linphone-sdk and CallKit. And the problem in my case was a missing audio key in Info.plist. You need to have these keys, if you want you app works with AVAudioSession in background mode.
<key>UIBackgroundModes</key> <array> <string>voip</string> <string>audio</string> </array>


        
Present in both answers; Present only in the new answer; Present only in the old answer;