Browse Source

android: disable ConnectionService for the Jitsi Meet app

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.
master
Saúl Ibarra Corretgé 5 years ago
parent
commit
95eb551156
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      android/app/src/main/java/org/jitsi/meet/MainActivity.java

+ 2
- 2
android/app/src/main/java/org/jitsi/meet/MainActivity.java View File

1
 /*
1
 /*
2
- * Copyright @ 2018-present 8x8, Inc.
3
- * Copyright @ 2017-2018 Atlassian Pty Ltd
2
+ * Copyright @ 2017-present 8x8, Inc.
4
  *
3
  *
5
  * Licensed under the Apache License, Version 2.0 (the "License");
4
  * Licensed under the Apache License, Version 2.0 (the "License");
6
  * you may not use this file except in compliance with the License.
5
  * you may not use this file except in compliance with the License.
91
             = new JitsiMeetConferenceOptions.Builder()
90
             = new JitsiMeetConferenceOptions.Builder()
92
                 .setWelcomePageEnabled(true)
91
                 .setWelcomePageEnabled(true)
93
                 .setServerURL(buildURL("https://meet.jit.si"))
92
                 .setServerURL(buildURL("https://meet.jit.si"))
93
+                .setFeatureFlag("call-integration.enabled", false)
94
                 .build();
94
                 .build();
95
         JitsiMeet.setDefaultConferenceOptions(defaultOptions);
95
         JitsiMeet.setDefaultConferenceOptions(defaultOptions);
96
 
96
 

Loading…
Cancel
Save