Questions tagged [connectycube]

ConnectyCube is a cloud communication platform for unified development of instant messaging, video calling and push notifications features in native and hybrid mobile and web applications.

ConnectyCube is a cloud communication platform for unified development of instant messaging, video calling and push notifications features in native and hybrid mobile and web applications.

Getting Started guides:

Instant messaging guides:

Video calling guides:

68 questions
4
votes
4 answers

React Native Sound Error: Argument 1 (RCTResponseSenderBlock) of RNSound.play must not be null

As far as I can tell I am loading the correct resource. However when I try to play the sound using React Native Sound I am still getting the following error: Argument 1 (RCTResponseSenderBlock) of RNSound.play must not be null How to fix this…
preston
  • 3,721
  • 6
  • 46
  • 78
4
votes
1 answer

Unexpected Signature while obtaining user session token

I am using Connecty Cube and following the documentation to get a user session token, however the response is Client error: POST https://api.connectycube.com/session resulted in a 422 Unprocessable Entity response: {"errors":["Unexpected…
linktoahref
  • 7,812
  • 3
  • 29
  • 51
3
votes
1 answer

Cannot read property 'getUserMedia' of undefined [React Native]

I have created a session of videochatconference and was able to enter a chat room by ID and view participants. However, when i try to get the local user stream using getUserMedia, it returns an error of undefined function this._session =…
3
votes
1 answer

Android React Native app crashes on getUserMedia WebRTC call

I have been debugging this for days now and no longer have many options, hence the long shot question - I'm using the ConnectyCube WebRTC video calling package for React Native. I have also tried using the react-native-webrtc package to stream video…
Mr. Robot
  • 1,334
  • 6
  • 27
  • 79
3
votes
3 answers

Where to put API session auth token in SDK request methods?

I am using the ConnectyCube React Native SDK and have obtained an app auth token using their API. This token is required when making further requests - for example when logging in as a user. Their documentation says: Upgrade session token (user…
Mr. Robot
  • 1,334
  • 6
  • 27
  • 79
2
votes
2 answers

Flutter: Execution failed for task ':flutter_webrtc:compileReleaseKotlin'

I tried to creating a build for my flutter app but it throws me an error. Can someone help? Execution failed for task ':flutter_webrtc:compileReleaseKotlin'. Error while evaluating property 'filteredArgumentsMap' of task…
2
votes
1 answer

Unable to implement video conferencing and tflite simultaneously in a flutter app

My main motive is to set up a video conferencing and run a TensorFlow model on top of the local stream and temporarily save it in the backend. I have implemented both video conferencing and tflite model detection individually. Problem is arising…
2
votes
2 answers

WebRTC' does not contain bitcode You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE)

My app works on the simulator when I run: npx react-native run-ios However when I try to get the ipa file by 'Archive'-ing it via the .xcworkspace I get the following error regarding WebRTC and bitcode. How to fix this…
preston
  • 3,721
  • 6
  • 46
  • 78
2
votes
0 answers

This.localStream is null

I'm trying to develop and application that allow to a medic and a patient be able to communicate using an Api called connectycube, the chat and video call work, the problem is with to mute sound and video. I have implemented the buttons to mute…
Alexander Ceballos
  • 750
  • 2
  • 20
  • 36
2
votes
1 answer

What is the correct order of API calls for connecting to ConnectyCube and some general questions

After many hours of trial and error, I managed to make my first successful API call to send a group message in Flutter. But I am not sure if I am doing things the right way. Unfortunatly the documentation does not help very much. It could be much…
aytunch
  • 1,326
  • 1
  • 16
  • 31
2
votes
0 answers

Sign In to connectyCube can take 5 to 10 seconds using flutter

When logging into Connectycube from the sample app, it can take any where from 5 to 10 seconds. Is this expected be havior ?
Randolph Hill
  • 81
  • 1
  • 1
  • 5
2
votes
1 answer

security error in connectycube video call

when i execute this code in reactnative by connecty cube video call : var calleesIds = [218307,218308]; // User's ids var sessionType = ConnectyCube.videochat.CallType.VIDEO; // AUDIO is also possible var additionalOptions = {}; var session =…
2
votes
0 answers

Local stream missing from session object - ConnectyCube Video Chat API

I am initiating a video call with the ConnectyCube videochat API. In their example app the session object returned from the code below includes a localStream object. I cannot however get this to work - localStream is always null. const getSession =…
Mr. Robot
  • 1,334
  • 6
  • 27
  • 79
2
votes
1 answer

Wait until all the callbacks have been called

I have component in react native that shows all the chats a user has. The main logic must be in componentDidMount(). Here, a simplified version: componentDidMount(){ ConnectyCube.chat.list({}, function(error, dialogs) { chats =…
2
votes
1 answer

Cordova video chat with ConnectyCube: can't build on Xcode 9

I'm trying to build ConnectyCube Video chat code sample under Cordova https://developers.connectycube.com/js/code-samples-videochat-cordova but getting an error: "The “Swift Language Version” (SWIFT_VERSION) build setting must be set to a supported…
user10058084
1
2 3 4 5