-
-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
App stops working when joining conference #120
Comments
Can you include the logcat debugging log from Android Studio? |
{ The reason it throws an error because 'room1' is too common. You need to choose a text string that is more complicated such as "testjitsiroom2850012" |
Apologies for the confusing since my first post, I have tested the application using production ready configuration where a uuid is used for the roomName and I am still getting the same error. The configuration is as follows:
Please find the logcat file showing the same error attached: If this error was due to the roomName wouldn't this cause an issue on ios aswell? |
Even when I change to a roomName in the format you suggest i.e. "oocrMeeting19343973947", the previous error goes away however the same behaviour is observed, however the issue now appears to be the following: FATAL EXCEPTION: main Any advise you could give would be greatly appreciated. |
I searched the Jitsi Meet SDK source code but could not find ReactViewGroup.java. I was not able to trace the error to any line of code in the SDK. On the other hand, have you given the Jitsi React Native SDK a try? https://jitsi.github.io/handbook/docs/dev-guide/dev-guide-react-native-sdk/ |
we just released 6.2.1 that addresses a bug specific for Android 14. Can you install it and see if you can now join the conference? |
Android version: 14
Node version: 18.16.1
Android Studio Version: Android Studio Koala | 2024.1.1
Packages
"@capacitor/android": "^6.0.0",
"@capacitor/app": "^6.0.0",
"@capacitor/browser": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/haptics": "^6.0.0",
"@capacitor/ios": "^6.0.0",
"@capacitor/keyboard": "^6.0.0",
"@capacitor/preferences": "^6.0.0",
"@capacitor/splash-screen": "^6.0.0",
"@capacitor/status-bar": "^6.0.0",
"capacitor-jitsi-meet": "^6.1.0",
"react": "^18.2.0",
I have an Android application in development. This is built with React and Capacitor. We are using your capacitor-jitsi-meet package to connect to Jitsi and join a video call. However whenever calling the Jitsi.joinConference() method, the app stops working, however the response we get from the request is
{success: true}
.We are using the recommended testing configuration from the NPM page:
Jitsi.joinConference({ roomName: 'room1', url: 'https://meet.jit.si', featureFlags: { 'prejoinpage.enabled': false, 'recording.enabled': false, 'live-streaming.enabled': false, 'android.screensharing.enabled': false, }, })
EDIT:
The IOS build of the application works perfectly and I am able to join a call
The text was updated successfully, but these errors were encountered: