Published August 23, 2023
Added
- New added interface to enable/disable AGC(Auto Adjust Microphone) feature in
MobileRTCMeetingSettings.h
.- (void)enableAutoAdjustMic:(BOOL)enable; - (BOOL)isAutoAdjustMicEnable;
- New enum value in
MobileRTCMeetError
represents joining a meeting that wasn't from the same account inMobileRTCConstants.h
.typedef NS_ENUM(NSUInteger, MobileRTCMeetError) { ... MobileRTCMeetError_UnableToJoinExternalMeeting = 63, ... }
- New added enum type
MobileRTCNotificationServiceError
for Zoom push notification service error type.typedef NS_ENUM(NSInteger, MobileRTCNotificationServiceError) { MobileRTCNotificationServiceError_Success = 0, MobileRTCNotificationServiceError_Unknow, MobileRTCNotificationServiceError_Internal_Error, MobileRTCNotificationServiceError_Invalid_Token, MobileRTCNotificationServiceError_Multi_Connect, MobileRTCNotificationServiceError_Network_Issue, MobileRTCNotificationServiceError_Max_Duration, MobileRTCNotificationServiceError_App_Background, };
- New added interface in
MobileRTCAuthService.h
to support showing Zoom push notification service detailed status.- (void)onNotificationServiceStatus:(MobileRTCNotificationServiceStatus)status error:(MobileRTCNotificationServiceError)error
Fixed
- Fixed an issue where the 3D avatar images weren't able to be auto-downloaded after selecting it once.
- Fixed an issue where the meeting invitation wasn't able to be received from the same meeting.
- Fixed an issue where the Zoom push notification service didn't reconnect when the network was reconnected.
- Fixed an issue where
OnBOListInfoUpdated
callback wouldn't be triggered correctly. - Fixed an issue where the Zoom push notification service would return
MobileRTCPresenceStatus_None
, which the expected return value should beMobileRTCPresenceStatus_UnAvailable
.
Deprecated
- Old
onNotificationServiceStatus
callback is deprecated.- (void)onNotificationServiceStatus:(MobileRTCNotificationServiceStatus)status;