skrafft / react-native-jitsi-meet

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

Callkit Buttons are not Showing while the video call #386

Open Dheenareact opened 2 years ago

Dheenareact commented 2 years ago

The mentioned below version used for implementing video call in our app

react : "16.13.1", react-native : "0.63.4", react-native-jitsi-meet: "^2.1.1",

end call button not showing. kindly support to resolve this issue

imgpsh_fullsize_anim

.

yanssou commented 1 year ago

in App.js, under the declarations of const url and const userInfo, you must declare : const meetFeatureFlags = { toolboxAlwaysVisible: true,} and const meetOptions = {featureFlag: true,} and put them as arguments in the function JitsiMeet.call (like this : JitsiMeet.call(url, userInfo, meetOptions, meetFeatureFlags) after that, rebuild with npx react-native run-android and it should work. At least it worked for me