I'm working on an android application in which I'm using Jitsi Meet API for video and conferencing but on the meeting page, there is an option to invite people which take to the browser and ask to download Jitsi meet app which I don't want to show in my app. I want to ask is there any way I can hide that button.
URL serverURL = new URL("https://meet.jit.si");
JitsiMeetConferenceOptions.Builder builder = new JitsiMeetConferenceOptions.Builder();
builder.setServerURL(serverURL);
builder.setWelcomePageEnabled(false);
builder.setRoom(meetingRoom);
JitsiMeetActivity.launch(OutgoingMeetingActivity.this, builder.build());
UPDATE
Here are some more flags as of 2021 from Jitsi docs
you can use flags from Jitsi meet SDK.
setFeatureFlag("invite.enabled",false)is used to disable invite feature.Also, you can find some useful flags from Jitsi-Meet