TatankaConCube

Results 145 comments of TatankaConCube

@cloudwebrtc we have the same issue in our project, could you please take care of this issue? for us, it is an important issue cause we use it for monitoring...

@ycherniavskyi could you please share your solution with us, cause we applied [this solution](https://github.com/flutter-webrtc/flutter-webrtc/issues/1005#issuecomment-1186130838) in our [plugin](https://github.com/ConnectyCube/connectycube-flutter-call-kit/blob/fix/ios_sound_in_background/ios/Classes/CallKitController.swift#L176-L228) but it still doesn't work if the call started from the killed app...

@magbdev as I can see, you use it only [there](https://github.com/magbdev/flutter_callkit_incoming/blob/master/ios/Classes/SwiftFlutterCallkitIncomingPlugin.swift#L486), we have the similar solution on the [master branch](https://github.com/ConnectyCube/connectycube-flutter-call-kit/blob/master/ios/Classes/CallKitController.swift#L176), but customers still report the issue if accept a call from...

@HamzaElalaouiElismaili we use the `replaceTrack` feature for it, you can use our method as a base for your implementation ```dart Future replaceMediaStream(MediaStream newStream) { return _peerConnection?.senders.then((senders) { senders.forEach((sender) async {...

We provided worked example for managing Internet state in our [Chat sample](https://github.com/ConnectyCube/connectycube-flutter-samples/blob/master/chat_sample/lib/main.dart). Which problem do you have with this implementation?

have you reviewed my link? there we try to reconnect to the chat if the chat connection state changed to `Closed` or `ForceClosed` and `connectivityType != ConnectivityResult.none`. Or vice versa,...

Have you try to use method `CubeChatConnection.instance.relogin` instead of `CubeChatConnection.instance.login`? Could you please attach here full log from flutter console?

Which version of our SDK do you use? How can we reproduce the same issue in our sample?

You are right, in the current version of our API we don't have a separate auth provider for authentication with Google. You can implement it using common authentication via e-mail.

A lot of our customers have different logic in their apps. They decide which tools use for their apps. We provide maximum universal solutions for all users with saving the...