A port of amazon-kinesis-video-streams-webrtc-sdk-js that works for React Native.
yarn add react-native-aws-kinesis-webrtc react-native-webrtc
npx pod-install
See https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-js.
The only API difference is how you register callbacks...
// This
signalingClient.on('open', async () => {});
// Becomes
signalingClient.callbacks.open = async () => {};
MIT