Original publication date: January 18, 2023
Breaking Changes
-
minSdkVersion
upgraded to 23 (minimum platform version: Android 6.0) -
compileSdkVersion
upgraded to 33 -
buildToolsVersion
upgraded to 30.0.3 -
targetSdkVersion
upgraded to 33
Added
-
Add interface to enable or disable receiving original and translated content.
-
New interface in
ZoomVideoSDKLiveTranscriptionHelper
MobileRTCSDKError enableReceiveSpokenLanguageContent(boolean bEnable) boolean isReceiveSpokenLanguageContentEnabled()
-
-
Add a live transcription operation type.
-
New enum in
ZoomVideoSDKLiveTranscriptionOperationType
ZoomVideoSDKLiveTranscription_OperationType_NoTranslation
-
-
Add interface to support getting live transcription history.
-
New callback in
ZoomVideoSDKDelegate
onLiveTranscriptionMsgInfoReceived(ZoomVideoSDKLiveTranscriptionHelper.ILiveTranscriptionMessageInfo messageInfo)
-
New interface in
ILiveTranscriptionMessageInfo
String getMessageID() String getSpeakerID() String getSpeakerName() String getMessageContent() long getTimeStamp() ZoomVideoSDKLiveTranscriptionOperationType getMessageType()
-
New interface in
ZoomVideoSDKLiveTranscriptionHelper
boolean isAllowViewHistoryTranslationMessageEnabled() List<ILiveTranscriptionMessageInfo> getHistoryTranslationMessageList()
-
-
Add video-effects module to support virtual and blurred background,
-
New interface in
ZoomVideoSDK
public abstract ZoomVideoSDKVirtualBackgroundHelper getVirtualBackgroundHelper()
-
New enum in
ZoomVideoSDKVirtualBackgroundDataType
ZoomVideoSDKVirtualBackgroundDataType_None, ZoomVideoSDKVirtualBackgroundDataType_Image, ZoomVideoSDKVirtualBackgroundDataType_Blur
-
New interface in
ZoomVideoSDKVirtualBackgroundHelper
boolean isSupportVirtualBackground() ZoomVideoSDKVirtualBackgroundItem addVirtualBackgroundItem(Bitmap image) int removeVirtualBackgroundItem(ZoomVideoSDKVirtualBackgroundItem imageItem) List<ZoomVideoSDKVirtualBackgroundItem> getVirtualBackgroundItemList() int setVirtualBackgroundItem(ZoomVideoSDKVirtualBackgroundItem imageItem) ZoomVideoSDKVirtualBackgroundItem getSelectedVirtualBackgroundItem()
-
New interface in
ZoomVideoSDKVirtualBackgroundItem
String getImageFilePath() String getImageName() ZoomVideoSDKVirtualBackgroundDataType getType() boolean canVirtualBackgroundBeDeleted()
-
Changed & Fixed
-
Fixed an issue that the callback
onUserLeave
cannot be received after the attendee is removed. -
Fixed a sample app permission issue when run on Android 13.