skrafft / react-native-jitsi-meet

React native wrapper for Jitsi Meet SDK
Apache License 2.0
285 stars 348 forks source link

Error on one plus 7T(Android 10) build #193

Open rananajam1 opened 4 years ago

rananajam1 commented 4 years ago

Screenshot_20200727-153501

Any idea why I am facing this issue on oneplus 7T but not on samsung A10? (Release mode)

bayazetyan commented 4 years ago

@rananajam1 You can disabled call integration, add this .setFeatureFlag("call-integration.enabled", false) here node_modules/react-native-jitsi-meet/android/src/main/java/com/reactnativejitsimeet/RNJitsiMeetModule.java You need add it for both methods call and audioCall

RNJitsiMeetConferenceOptions options = new RNJitsiMeetConferenceOptions.Builder()
  .setRoom(url)
   .setAudioOnly(false)
   .setUserInfo(_userInfo)
   .setFeatureFlag("call-integration.enabled", false) // Add this line
   .build();
rananajam1 commented 4 years ago

@bayazetyan still the same issue. @skrafft can you suggest why this might be happening?

KushalDesai1 commented 4 years ago

@bayazetyan I am also facing the same issue. @skrafft Please suggest a reason. I am checking on the OnePlus 6.

ram95krishh commented 3 years ago

Facing the same issue. Unable to trace the origin of this error by error message neither inside the library nor in the jitsi-meet server code too!! Model: Oneplus 8Pro, Oneplus Nord Oxygen OS: 11.x

Could this issue be anyway related to this module that specific Android systems could use? Ref https://github.com/VR-25/acc/issues/51