Changelog: Meeting SDK - Android - 7.0.0

Released: 2026-03-25 Updated: 2026-03-27

Visit Changelog

Summary: Breaking changes - remove Kubi support, change SetBOOption to return an error when called before a breakout room is created; add support for selecting virtual background in meeting preview; fixed an issue with navigating to the livestream URL page.

Breaking changes

  • Change the behavior for the function setBOOption so that when it is called before a breakout room is created, the function returns an error.
    • Change the return type of function setBOOption from booleanto MobileRTCSDKError.

      MobileRTCSDKError setBOOption(BOOption option);
      
    • Add mew error code.

      SDKERR_BREAKOUT_ROOM_NOT_CREATED,
      
  • Adopt Zoom client’s change to remove Kubi support.
    • Remove interfaces from MeetingSettingsHelper.java since Zoom client no longer supports Kubi.

      public void setKubiDeviceEnabled(boolean enabled);
      public boolean isKubiDeviceEnabled();
      

Added

  • Add support for selecting virtual background in pre-meeting preview.
    • New callback in InMeetingServiceListener.java.
      InMeetingPreviewHandler
      
    • New InMeetingPreviewHandler interface.
      MobileRTCSDKError confirmPreview(@Nullable String screenName, boolean videoOn, boolean audioOn)
      

Fixed

  • Fix the issue where it wasn’t possible to navigate to the livestream URL page.