Is there a Option to Allow participant to un-mute themselves in Android SDK while using custom-ui?

Hi,
We are using zoom SDK with custom UI in our apps. I was looking for a method to Allow Participant To unmute themselves. But I was not able to find out this option for Custom-UI. Let me know if there is a method in SDK that we can use to toggle Allow Participant To unmute themselves

Hi @pavan.careers5208, thanks for the post.

A participant can unmute themselves through an instance of InMeetingAudioController:

ZoomSDK.getInstance().getInMeetingService().getInMeetingAudioController().muteMyAudio(false);

To mute your own audio, you can call the same method with a parameter of true.

Thanks!