By Sagar Shankaran, Founder of CallSphere
react-native-webrtc 124.x is the dominant cross-platform WebRTC library for React Native. Here is how AI voice agent apps ship it with CallKeep and PushKit/FCM.
Key takeaways
react-native-webrtc 124.x is the de-facto WebRTC library for React Native in 2026. Pair it with react-native-callkeep for unified CallKit + Telecom UI, react-native-voip-push-notification for PushKit, and a regular FCM hook for Android — and you have a cross-platform AI voice agent client in under 1,000 lines of TypeScript.
react-native-webrtc was forked from the original SimpleWebRTC RN module and is maintained today by the official react-native-webrtc GitHub org. As of version 124.0.7 (the most recent published 124.x line), it tracks libwebrtc M124, supports Unified Plan only (since 106), and ships software encode/decode with simulcast on by default (since 111). For AI voice agent apps the audio path is what matters, and 124.x handles Opus, AEC, AGC, and noise suppression on both iOS and Android with a single PeerConnection API.
The peer libraries — react-native-callkeep for CallKit + Telecom and react-native-voip-push-notification for PushKit — are still actively maintained under the same org in 2026.
```mermaid flowchart LR Push[PushKit / FCM] --> RN[React Native App] RN -- displayIncomingCall --> CallKeep[react-native-callkeep] CallKeep -- answer event --> RN RN -- mediaDevices.getUserMedia --> WebRTC[react-native-webrtc PeerConnection] WebRTC -- DTLS-SRTP --> Gateway[Pion Go gateway 1.23] Gateway -- NATS --> Pod[6-container agent pod] ```
CallSphere ships an internal-tools React Native app for field agents in two of our six verticals (real estate, healthcare, behavioral health, legal, salon, insurance):
Hear it before you finish reading
Talk to a live CallSphere AI voice agent in your browser — 60 seconds, no signup.
37 agents · 90+ tools · 115+ DB tables · 6 verticals · HIPAA + SOC 2 · $149/$499/$1499 · 14-day /trial · 22% affiliate at /affiliate.
```bash yarn add react-native-webrtc react-native-callkeep react-native-voip-push-notification cd ios && pod install --clean-install ```
```ts // hooks/useVoiceCall.ts import { mediaDevices, RTCPeerConnection } from "react-native-webrtc"; import RNCallKeep from "react-native-callkeep"; import VoipPushNotification from "react-native-voip-push-notification";
RNCallKeep.setup({ ios: { appName: "CallSphere", supportsVideo: false }, android: { alertTitle: "Permissions", alertDescription: "Needed for incoming calls", okButton: "OK", cancelButton: "Cancel" }, });
VoipPushNotification.addEventListener("notification", (payload) => { const callId = payload.call_id; RNCallKeep.displayIncomingCall(callId, payload.from, payload.from, "generic", false); });
RNCallKeep.addEventListener("answerCall", async ({ callUUID }) => { const stream = await mediaDevices.getUserMedia({ audio: true }); const pc = new RTCPeerConnection({ iceServers: [{ urls: "stun:stun.l.google.com:19302" }], }); stream.getTracks().forEach((t) => pc.addTrack(t, stream)); // Negotiate offer/answer with backend }); ```
Still reading? Stop comparing — try CallSphere live.
CallSphere ships complete AI voice agents per industry — 14 tools for healthcare, 10 agents for real estate, 4 specialists for salons. See how it actually handles a call before you book a demo.
For Android FCM, hook `react-native-firebase/messaging`'s background handler and call `RNCallKeep.displayIncomingCall` from there.
Does it work on Hermes? Yes — react-native-webrtc has been Hermes-compatible since 106.x.
Does it work on the New Architecture? Yes since 118.x; turbo modules and fabric are both supported.
Can I do video? Yes — same library; pair with react-native-camera or just `mediaDevices.getUserMedia({ video: true })`.
Is there a managed Expo path? Use the @config-plugins/react-native-webrtc plugin and an EAS dev client; Expo Go is not supported.
How big is the binary impact? Around 6 MB on iOS, 8 MB on Android due to libwebrtc.so.
Try the WebRTC stack live at /demo, see /pricing, or start a /trial.
Written by
Sagar Shankaran· Founder, CallSphere
Sagar Shankaran is the founder of CallSphere, where he builds production AI voice and chat agents deployed across healthcare, hospitality, real estate, and home services. He writes about agentic AI, LLM engineering, and shipping voice agents that handle real calls in production.
See how AI voice agents work for your industry. Live demo available -- no signup required.
A founder's guide to texto a voz (text-to-speech in Spanish): LATAM vs Castilian voices, free options, and how CallSphere ships Spanish agents.
A founder's guide to the female voice generator landscape: AI female voices, Japanese voices, robot voices, and how CallSphere ships 57+ voices live.
A founder's guide to the Siri voice generator landscape: how AI voice cloning works, what is legal, and how CallSphere uses 57+ voices in production.
A founder's guide to AI voice assistants for ecommerce: customer service, order lookup, and how CallSphere fits in versus virtual receptionists.
Robot text to speech in 2026: how I pick TTS APIs, when robotic voices help, and how CallSphere ships 57+ language voice agents. Hands-on guide.
The customer support specialist role in 2026 is half human, half AI. Here is what the job looks like, the AI tools that pair with it, and how we ship it.
© 2026 CallSphere LLC. All rights reserved.