logo
On this page

ZIM upgrade Guide


This article introduces some instructions and precautions when upgrading the ZIM Unity3D SDK.

2.10.0 upgrade guide

Warning

Please note that starting from version 2.10.0, the following interfaces have significant changes, so please read the following guide when upgrading from older versions to version 2.10.0.

1. OnCallInvitationTimeout method changed

OnCallInvitationTimeout added the new parameter ZIMCallInvitationTimeoutInfo. Developers need to supplement this parameter when calling the callback, otherwise the code cannot be compiled.

2.10.0 version usage
old version usage
  ZIM.GetInstance().onCallInvitationTimeout += (ZIM zim, ZIMCallInvitationTimeoutInfo info, string callID) => {

  };
1
Copied!
  ZIM.GetInstance().onCallInvitationTimeout += (ZIM zim, string callID) => {

  };
1
Copied!

Previous

ZIM release notes

Next

Authentication