Commit b5a6ab70 authored by QuentinArguillere's avatar QuentinArguillere
Browse files

Use branch feature/swift_wrapper_async_helpers of the linphone SDK

No related merge requests found
Pipeline #67771 failed with stage
in 2 minutes and 14 seconds
Showing with 2 additions and 2 deletions
......@@ -42,7 +42,7 @@ class CallKitExampleContext : ObservableObject
func addRegistrationStateCallBack(core:Core) {
core.accountStatePublisher
core.publisher?.onAccountRegistrationStateChanged?
.postOnMainQueue { (publishedValue:(core: Core, account: Account, state: RegistrationState, message: String)) in
NSLog("New registration state is \(publishedValue.state) for user id \( String(describing: publishedValue.account.params?.identityAddress?.asString()))\n")
if (publishedValue.state == .Ok) {
......@@ -61,7 +61,7 @@ class CallKitExampleContext : ObservableObject
func addCallStateChangedCallBack(core:Core) {
core.callStatePublisher
core.publisher?.onCallStateChanged?
.postOnMainQueue { (publishedValue:(core: Core, call: Call, state: Call.State, message: String)) in
self.callMsg = publishedValue.message
if (publishedValue.state == .PushIncomingReceived){
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment