Documentation
ExpressVideoSDK Video Call
Documentation
Demo APP
SDK Center
API Center
FAQ
Code Market
Console
Sign Up
Log In
中文站 English
  • Documentation
  • Video Call
  • Resources & Reference
  • SDK
  • Upgrade guide
  • Upgrade guide 3.8.1+

Upgrade guide 3.8.1+

Last updated:2023-09-27 14:34

  • If your current SDK version is lower than 3.8.1, when you need to upgrade to any version of 3.8.1 or above. Please make sure to read this document.
  • In addition, it is recommended that you refer to the business-related interfaces changes in the Release notes between the current version and the target version.

In version 3.8.1, deprecated changes were made to the following API interfaces.

onPublisherSendAudioFirstFrame

Abandoned the original onPublisherSendAudioFirstFrame callback interface and replaced it with the onPublisherSendAudioFirstFrame callback of the same name, and added a channel parameter to support callback-related event activities by publsih channel.

  • Before 3.8.1

    static void Function()? onPublisherSendAudioFirstFrame;
  • After 3.8.1 and above

    static void Function(ZegoPublishChannel channel)? onPublisherSendAudioFirstFrame;

Adaptation method

  • Before 3.8.1

    ZegoExpressEngine.onPublisherSendAudioFirstFrame = () {
        // ...
    };
  • After 3.8.1 and above

    ZegoExpressEngine.onPublisherSendAudioFirstFrame = (channel) {
        // ...
    };

setAudioReceiveRange

The original member function setAudioReceiveRange interface of the ZegoRangeAudio class is discarded and replaced with the setAudioReceiveRange interface with the same name, and the parameter ZegoReceiveRangeParam type is extended to support setting the audio receiving range of the range voice.

  • Before 3.8.1

    Future<void> setAudioReceiveRange(double range);
  • After 3.8.1 and above

    Future<int> setAudioReceiveRange(ZegoReceiveRangeParam param);

Adaptation method

  • Before 3.8.1

    rangeAudio.setAudioReceiveRange(1.0);
  • After 3.8.1 and above

    var param = ZegoReceiveRangeParam(0.5, 1.0);
    rangeAudio.setAudioReceiveRange(param);

setStreamVocalRange

The original member function setStreamVocalRange interface of the ZegoRangeAudio class is discarded and replaced with the setStreamVocalRange interface with the same name, and the parameter ZegoVocalRangeParam type is extended to support setting the voice range of a single stream of range voice.

  • Before 3.8.1

    Future<void> setStreamVocalRange(String streamID, double vocalRange);
  • After 3.8.1 and above

    Future<int> setStreamVocalRange(String streamID, ZegoVocalRangeParam param);

Adaptation method

  • Before 3.8.1

    rangeAudio.setStreamVocalRange(streamid, 1.0);
  • After 3.8.1 and above

    var param = ZegoVocalRangeParam(0.5, 1.0);
    rangeAudio.setStreamVocalRange(streamid, param);
Page Directory
  • Free trial
  • 提交工单
    咨询集成、功能及报价等问题
    电话咨询
    400 1006 604
    Get Consulting
    Scan Wechat QR code