Hide invite option on participant UI
HI,
I want to hide invite option on participant screen. i am using custom UI for zoom calls.
Sample Code
StartMeetingOptions opts = new StartMeetingOptions();
opts.no_driving_mode = true;
opts.no_titlebar = true;
opts.no_bottom_toolbar = true;
opts.no_invite = true;
ZoomSDK.getInstance().getMeetingSettingsHelper().disableChatUI(true);
StartMeetingParamsWithoutLogin params = new StartMeetingParamsWithoutLogin();
int ret = meetingService.startMeetingWithParams(this, params, opts);
below is the screen shot of the issue.