Questions tagged [react-native-webrtc]

49 questions
1
vote
2 answers

Video Calling in Expo React Native Application

I am building a React Native Application using Expo and I want to integrate a 1:1 video calling functionality in the app. From what I have researched so far on the topic is that I can use SDKs of various libraries like Twilio, Videosdk, VoxImplant…
1
vote
1 answer

Where should I save data like peer connection, media stream,... when I use WebRTC

I am new in WebRTC and I try to use it in my app. Like the tittle I am wondering should I save data like peer connection, media stream,... in useState or in Redux.
1
vote
1 answer

React-Native - How is it possible that when I close an app like messenger I can still receive incoming call notifications from others

I am building an app like Messenger, everything works normally like sending messages, receiving messages, video calling. the technologies i use are react-native, reactJS, socket.io, nodeJS, react-native-webrtc I wonder how can when I close an app…
Four
  • 125
  • 1
  • 1
  • 9
1
vote
0 answers

The android virtual machine it suddenly disappears and doesn't report any errors when I set up react-native-webrtc

Goal I'm new to react native and I would like to install react-native-webrtc Problem I can install on IOS but I cannot install it on android What I did step 1: npx react-native init AwesomeProject step 2: npm install react-native-webrtc --save step…
Four
  • 125
  • 1
  • 1
  • 9
1
vote
1 answer

How to always connect to socket.io even when shutdown or exit the application to be able to receive notifications from calls or messages(React Native)

I'm having a problem with react native my app can let you video call each other using webRTC and socket.io, the technologies i use are WebRTC, React Native, Socket.io , socket.io-client, react-native-webrtc Basically the way my app works is when you…
Four
  • 125
  • 1
  • 1
  • 9
1
vote
0 answers

screen share in react-native-webrtc

I am developing a react-native app with webrtc functionality for video calling. thank to https://github.com/react-native-webrtc/react-native-webrtc I am able to achieve join room, leave room. but it am still struggling on screen share on…
Amit Soni
  • 94
  • 1
  • 1
  • 6
1
vote
0 answers

Duplicate class org.webrtc.AddIceObserver found in modules jetified-libwebrtc

I was using voximplant for P2P video call, and I wanted integrate live broadcast/streaming call just like Teams or Jitsu using react-native-webrtc. How can I resovle this issue? Thank you advance for your help. But as I installed…
1
vote
0 answers

WebRTC React Native gives exception on IOS

i am using webRTC for implementing real time connection in my React Native app , i am getting the following error when the participant join from ios side. "react-native-webrtc": "1.89.1" "react-native": "0.63.3" how can i solve or ignore this…
Amir Doreh
  • 1,369
  • 1
  • 13
  • 25
0
votes
0 answers

react native webrtc - remote stream updating but not rendered in component

I am using https://github.com/react-native-webrtc/react-native-webrtc and I tried following code export default function PeerProvider({children}) { const [socket, setSocket] = useState(); const [peer, setPeer] = useState(); const [stream,…
user
  • 33
  • 11
0
votes
0 answers

Hyperactive logs while connecting to peer, no video, no audio (React Native WebRTC)

I've got an issue with implementing WebRTC on RN and would appreciate some help. I have a signaling server set up using socketIO and sometimes manage to get audio to work but it's unreliable and I can't seem to make video work. I'm using supabase db…
Daren Palmer
  • 142
  • 1
  • 10
0
votes
0 answers

Persisting non-serializable values in react native

Is there any way to persist non-serialisable values in react native? I am building a calling app using SIP js, everything works fine. Now i want to implement the call receiving functionality when the app is killed (The thing below is what I think…
Irfan wani
  • 4,084
  • 2
  • 19
  • 34
0
votes
0 answers

Peer Connections onicecandidate is returning NULL for candidates always

I am trying to get the group video call to work using WebRTC in React Native application. The offers, local description and remote description part is working correctly. However, oniceCandidate function is always returning null for Candidate. The…
0
votes
1 answer

React-Native-webrtc black remote stream

I added video call to my react native app using react-native-webrtc, everything is working fine two devices are connected on the same network but always get a black remote stream on both devices when connected to different networks. I read somewhere…
Johndev247
  • 91
  • 6
0
votes
1 answer

Error: WebSocket closed wss://my.websocket.server:port (code: 1006)] sip.js react native

I am integrating sipjs in react native and here is the code; import {Registerer, UserAgent} from 'sip.js'; export const registerUserAgent = async () => { try { let sipUsername = 'my username'; let sipToken = 'my token'; const…
Irfan wani
  • 4,084
  • 2
  • 19
  • 34
0
votes
0 answers

React Native WebRTC iceconnectionstate always false

I am using react-native-webrtc to create a video call between 2 people. First, 2 users must open the app and have theirs peerConnection set up with local media stream. Then the other one will send the offer and the other will automatically accept…