Skip to content

Commit

Permalink
android: disable ConnectionService for the Jitsi Meet app
Browse files Browse the repository at this point in the history
It's the source of uncountable problems for which we don't have a good
solution, since they are caused by buggy implementations of self-managed
connection services by manufacturers.
  • Loading branch information
saghul committed Feb 26, 2020
1 parent a7ac779 commit 95eb551
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/app/src/main/java/org/jitsi/meet/MainActivity.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/*
* Copyright @ 2018-present 8x8, Inc.
* Copyright @ 2017-2018 Atlassian Pty Ltd
* Copyright @ 2017-present 8x8, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -91,6 +90,7 @@ protected void initialize() {
= new JitsiMeetConferenceOptions.Builder()
.setWelcomePageEnabled(true)
.setServerURL(buildURL("https://meet.jit.si"))
.setFeatureFlag("call-integration.enabled", false)
.build();
JitsiMeet.setDefaultConferenceOptions(defaultOptions);

Expand Down

2 comments on commit 95eb551

@abnerh69
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @saghul, what a extraordinary tool. I have been using it on web, now on Flutter with jitsi_meet package. Now I wonder if there is a workaround on this issue, because we need to add some other tools on our app while final users are on jitsi meeting. Mainly some extra buttons with call to business functions.

@saghul
Copy link
Member Author

@saghul saghul commented on 95eb551 Dec 10, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry no, we didn't find a solution.

Please sign in to comment.