-
Notifications
You must be signed in to change notification settings - Fork 12
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
Android: Default video is not enable. #80
Comments
For reference. @codlab @FabienLavocat XRecorder_13032023_103644_001.mp4 |
do you mean outside of react native lifecycle ? |
|
@codlab @FabienLavocat Any update for this bug? please take a look and update us on all bugs. Thanks |
did the receiver accepted incoming video permission ? I don't replicate the issue, was the app completely closed? Are those defaultVideo & speaker made before or after attempt to connect the user ? |
@codlab We share information in the mail. |
@codlab This issue reproduces once we get a notification in the killing state. we share the kill state logs yesterday. so please check from your end first. |
I don't have the issue from the killing state. Are you sure to call |
let me try before the opening the session. |
can you please share the zip code which you used? so I can get references from them. |
@codlab Not working. I am setting as below. Let me know if i am still missing. VoxeetSDK.defaultVideo(true); //Make default camera on
VoxeetSDK.defaultBuiltInSpeaker(true); // Make default speaker on
const participant = new ConferenceParticipant(
`${sub}`.toString(),
preferred_username
? `${preferred_username}`.toString()
: given_name
? `${given_name}`.toString()
: '',
picture ? `${picture}`.toString() : ''
console.warn('opening a session', participant);
VoxeetEnvironment.connect(participant)
.then(() => {
resolve();
})
.catch((error) => {
console.log('VoxeetEnvironment.connect error :: ', error);
reject(error);
}); |
As a receiver when I receive a call then the video is disabled. Can we enable it?
The text was updated successfully, but these errors were encountered: