mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 02:58:07 +00:00
SDK update 5.3.83
This commit is contained in:
parent
43ea270cff
commit
d6eced6e3c
3 changed files with 6 additions and 6 deletions
|
|
@ -656,7 +656,7 @@ import AVFoundation
|
|||
CallManager.instance().providerDelegate.callInfos.updateValue(callInfo, forKey: uuid)
|
||||
CallManager.instance().providerDelegate.uuids.updateValue(uuid, forKey: "")
|
||||
CallManager.instance().providerDelegate.reportOutgoingCallStartedConnecting(uuid: uuid)
|
||||
Core.get().activateAudioSession(actived: true)
|
||||
Core.get().activateAudioSession(activated: true)
|
||||
} else {
|
||||
CallManager.instance().referedToCall = callId
|
||||
}
|
||||
|
|
@ -763,7 +763,7 @@ import AVFoundation
|
|||
// Audio messages
|
||||
|
||||
@objc func activateAudioSession() {
|
||||
lc?.activateAudioSession(actived: true)
|
||||
lc?.activateAudioSession(activated: true)
|
||||
}
|
||||
|
||||
@objc func getSpeakerSoundCard() -> String? {
|
||||
|
|
|
|||
|
|
@ -273,7 +273,7 @@ extension ProviderDelegate: CXProviderDelegate {
|
|||
// Callkit's design is not consistent, or its documentation imcomplete, wich is somewhat disapointing.
|
||||
//
|
||||
Log.directLog(BCTBX_LOG_DEBUG, text: "Assuming AudioSession is active when executing a CXSetHeldCallAction with isOnHold=false.")
|
||||
CallManager.instance().lc?.activateAudioSession(actived: true)
|
||||
CallManager.instance().lc?.activateAudioSession(activated: true)
|
||||
CallManager.instance().callkitAudioSessionActivated = true
|
||||
}
|
||||
}
|
||||
|
|
@ -352,13 +352,13 @@ extension ProviderDelegate: CXProviderDelegate {
|
|||
|
||||
func provider(_ provider: CXProvider, didActivate audioSession: AVAudioSession) {
|
||||
Log.directLog(BCTBX_LOG_MESSAGE, text: "CallKit: audio session activated.")
|
||||
CallManager.instance().lc?.activateAudioSession(actived: true)
|
||||
CallManager.instance().lc?.activateAudioSession(activated: true)
|
||||
CallManager.instance().callkitAudioSessionActivated = true
|
||||
}
|
||||
|
||||
func provider(_ provider: CXProvider, didDeactivate audioSession: AVAudioSession) {
|
||||
Log.directLog(BCTBX_LOG_MESSAGE, text: "CallKit: audio session deactivated.")
|
||||
CallManager.instance().lc?.activateAudioSession(actived: false)
|
||||
CallManager.instance().lc?.activateAudioSession(activated: false)
|
||||
CallManager.instance().callkitAudioSessionActivated = nil
|
||||
}
|
||||
}
|
||||
|
|
|
|||
2
Podfile
2
Podfile
|
|
@ -5,7 +5,7 @@ source "https://github.com/CocoaPods/Specs.git"
|
|||
|
||||
def all_pods
|
||||
if ENV['PODFILE_PATH'].nil?
|
||||
pod 'linphone-sdk', '~>5.3.20'
|
||||
pod 'linphone-sdk', '~>5.3.83'
|
||||
else
|
||||
pod 'linphone-sdk', :path => ENV['PODFILE_PATH'] # local sdk
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue