zaigham-mt
zaigham-mt
I got the same scenario . I have observed that all events those should be received during background are being received when I click on app and run in foreground....
@nuclearace Socket.IO is holding the the events on background mode. I tried to show local notifications to event. When I disconnect the internet I am getting all holding event local...
@Meonardo Background fetch does not mean it will stay long. If socket is disconnected its oblivious new socket will have new socket id. Issue I was facing is app is...
Here is the config file. config = { peerConnectionConfig: { iceServers: [ {"url": "stun:23.21.150.121"}, {"url": "stun:stun.l.google.com:19302"} ] }, peerConnectionConstraints: { optional: [ {"DtlsSrtpKeyAgreement": true} // (browser === 'firefox') ] },...
I have used following now. Still same scenario. ``` mediaConstraints: { 'mandatory': { 'OfferToReceiveAudio': { echoCancellation: true, googEchoCancellation: true, googAutoGainControl: true, googAutoGainControl2: true, googNoiseSuppression: true, googHighpassFilter: true, googTypingNoiseDetection: false, googAudioMirroring:...
@johache I have even tried to create following answer. function answer(data) { var pc = peerDatabase[getPeerIndex(data)].pc; ``` toggleLocalStream(pc,data.videoChatId); pc.createAnswer( function (sessionDescription) { pc.setLocalDescription(sessionDescription); send('answer', data, sessionDescription); }, function (error) {...
Ok Finally it worked using correct constraints parameters on offer packet.Its working fine for Safari now. But when I am trying it for firefox , on IOS device I am...
@EbramTawfik Is it tested now?
Ebram , When I tried to use screen capture then screen is not being shared. Altough virtual screen sharing is working. Is there any option to get screen instead of...