Question
Not able to mute/unmute zoom meeting in react-native-zoom-us
I am integrating zoom into react native application. Below are versions used
react native- 0.74.3, react-native-zoom-us- 9.0.0
Not able to mute and unmute audio when using custom component ZoomUsVideoVideo.
I am able to initilize the zoom SDK.
I am able to join meeting successfully.
But when I tried to mute and unmute audio, I get an error ie: "ERR [Error: Mute my audio error, status: SDKERR_SERVICE_FAILED]"
const initializeResult = await ZoomUs.initialize(
{ jwtToken: sdkJwtToken },
{
enableCustomizedMeetingUI,
disableShowVideoPreviewWhenJoinMeeting: true,
disableMinimizeMeeting: false,
disableClearWebKitCache: false
},
);
const joinMeetingResult = await ZoomUs.joinMeeting({
autoConnectAudio: true,
userName: Test,
meetingNumber: meetingNumber,
password: password,
noMeetingErrorMessage: true,
zoomAccessToken: zak,
noAudio: false,
noVideo: false,
}).then(() => {
Alert.alert("joined meeting........")
});
const muteUnmuteResult = await ZoomUs.muteMyAudio(true/false);
