Skip to content

Commit

Permalink
disabled prejoin and started muted
Browse files Browse the repository at this point in the history
  • Loading branch information
Calinteodor committed Jun 4, 2024
1 parent d3f1d4f commit 51fa499
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected void onCreate(Bundle savedInstanceState) {
//.setToken("MyJWT")
// Different features flags can be set
// .setFeatureFlag("toolbox.enabled", false)
// .setFeatureFlag("filmstrip.enabled", false)
.setFeatureFlag("prejoinpage.enabled", false)
.setFeatureFlag("welcomepage.enabled", false)
.build();
JitsiMeet.setDefaultConferenceOptions(defaultOptions);
Expand All @@ -78,8 +78,8 @@ public void onButtonClick(View v) {
= new JitsiMeetConferenceOptions.Builder()
.setRoom(text)
// Settings for audio and video
//.setAudioMuted(true)
//.setVideoMuted(true)
.setAudioMuted(true)
.setVideoMuted(true)
.build();
// Launch the new activity with the given options. The launch() method takes care
// of creating the required Intent and passing the options.
Expand Down

0 comments on commit 51fa499

Please sign in to comment.