Skip to content

Commit 4558611

Browse files
committed
iOS: v1.0.29 (fixed conf mode, improved conn handling, added 'handleIncomingPush')
1 parent 23c815e commit 4558611

File tree

13 files changed

+18
-7
lines changed

13 files changed

+18
-7
lines changed

siprix_voip_sdk_ios/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 1.0.29
2+
- Fixed sound artifacts which could appear when SDK hosts conference call
3+
- Added ability to skip registration request when SDK has been succfully registered less than 1sec ago
4+
- iOS: Added new method 'handlePushNotif' which restores registration when push received
5+
Fixes related to handling connection in background mode
6+
//2025.12.05
7+
18
## 1.0.28
29
- Updated upgradeToVideo implementation. Added new mode 'manual'
310
- Added new event 'onCallVideoUpgradeRequested'

siprix_voip_sdk_ios/ios/Classes/SiprixVoipSdkPlugin.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1796,6 +1796,8 @@ class SiprixCxProvider : NSObject, CXProviderDelegate {
17961796
}
17971797

17981798
public func onPushIncoming() -> String {
1799+
_siprixModule.handleIncomingPush()
1800+
17991801
let call = CallModel(callId:kInvalidId, withVideo:true, from:"SiprixPushKit")
18001802
_callsList.append(call)
18011803

siprix_voip_sdk_ios/ios/siprix.xcframework/ios-arm64/siprix.framework/Headers/Siprix.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,7 @@ EXPORT
363363
- (BOOL)overrideAudioOutputToSpeaker:(BOOL)on;
364364
-(BOOL)routeAudioToBluetoth;
365365
-(BOOL)routeAudioToBuiltIn;
366+
-(void)handleIncomingPush;
366367
#endif
367368

368369
- (int)accountAdd:(SiprixAccData* _Nonnull)accData;
Binary file not shown.
Binary file not shown.

siprix_voip_sdk_ios/ios/siprix.xcframework/ios-arm64_x86_64-simulator/siprix.framework/Headers/Siprix.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -363,6 +363,7 @@ EXPORT
363363
- (BOOL)overrideAudioOutputToSpeaker:(BOOL)on;
364364
-(BOOL)routeAudioToBluetoth;
365365
-(BOOL)routeAudioToBuiltIn;
366+
-(void)handleIncomingPush;
366367
#endif
367368

368369
- (int)accountAdd:(SiprixAccData* _Nonnull)accData;
Binary file not shown.

siprix_voip_sdk_ios/ios/siprix.xcframework/ios-arm64_x86_64-simulator/siprix.framework/_CodeSignature/CodeResources

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
<dict>
77
<key>Headers/Siprix.h</key>
88
<data>
9-
RcWGTdzlU4PrnlsoSNFlZoJqpBI=
9+
hH9z0E378pi3pHFJI3BIbtFhvG8=
1010
</data>
1111
<key>Headers/SiprixCpp.h</key>
1212
<data>
13-
xOoTCPQEmQ0ITGeBa9+rweSiibI=
13+
wizoOX9QnGq4nu7MjGbj7CrgsH4=
1414
</data>
1515
<key>Info.plist</key>
1616
<data>
17-
IcxBvbe0KC3yuagQznwclEFa8qs=
17+
3sqo52MpeKoQ+Os6oK8gFxe7YDI=
1818
</data>
1919
<key>Modules/module.modulemap</key>
2020
<data>
@@ -27,14 +27,14 @@
2727
<dict>
2828
<key>hash2</key>
2929
<data>
30-
/eqwAsjYWOpDYgx0QwfFndtGiRaij3DOttHQ6KK+dS4=
30+
PNOrKsYHmfUHwvqKpButIQPsVRUsIsWe5pZZ/x07myY=
3131
</data>
3232
</dict>
3333
<key>Headers/SiprixCpp.h</key>
3434
<dict>
3535
<key>hash2</key>
3636
<data>
37-
jAhlTgghhSLMLF1AWyqXezahBtTP717LOTbk2y/pB3A=
37+
TW0IJZ+M3MBn5g+6qZFu0ND8Sj5pkeNtrLOWTYiM7I4=
3838
</data>
3939
</dict>
4040
<key>Modules/module.modulemap</key>
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)