Skip to content
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

Open
codal-mpawar opened this issue Mar 13, 2023 · 11 comments
Open

Android: Default video is not enable. #80

codal-mpawar opened this issue Mar 13, 2023 · 11 comments
Assignees
Labels
bug Something isn't working

Comments

@codal-mpawar
Copy link

As a receiver when I receive a call then the video is disabled. Can we enable it?

VoxeetSDK.defaultVideo(true); //Make default camera on
            VoxeetSDK.defaultBuiltInSpeaker(true); // Make default speaker on
@codal-mpawar codal-mpawar added the bug Something isn't working label Mar 13, 2023
@codal-mpawar
Copy link
Author

For reference. @codlab @FabienLavocat

XRecorder_13032023_103644_001.mp4

@codlab
Copy link
Contributor

codlab commented Mar 13, 2023

do you mean outside of react native lifecycle ?

@codal-mpawar
Copy link
Author

codal-mpawar commented Mar 13, 2023

@codlab

  1. Once the callee initiates the call
  2. the receiver gets the notification and receiver accepts the call
  3. receiver default video option is not on/enable.

@codal-mpawar
Copy link
Author

@codlab @FabienLavocat Any update for this bug? please take a look and update us on all bugs. Thanks

@codlab
Copy link
Contributor

codlab commented Mar 27, 2023

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 ?

@codal-mpawar
Copy link
Author

@codlab We share information in the mail.

@codal-mpawar
Copy link
Author

@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.

@codlab
Copy link
Contributor

codlab commented Apr 4, 2023

I don't have the issue from the killing state. Are you sure to call VoxeetSDK.defaultVideo(true); before opening the session back when the app is opening itself ?

@codal-mpawar
Copy link
Author

let me try before the opening the session.

@codal-mpawar
Copy link
Author

can you please share the zip code which you used? so I can get references from them.

@codal-mpawar
Copy link
Author

codal-mpawar commented Apr 5, 2023

@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);
  });

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants