1

我正在尝试使用 react-native-webrtc 创建一个基本的 RN 应用程序,但我无法创建 RTCPeerConnection 类实例。

import {RTCPeerConnection} from 'react-native-webrtc';

const App: () => React$Node = () => {
   const configuration = { "iceServers": [{ "url": "stun:stun.l.google.com:19302" }] };
   const pc = new RTCPeerConnection(configuration);
   ...
   return(<>)
}

有错误: 在此处输入图像描述

无法创建 RTCPeerConnection 类的实例可能是什么原因?所有依赖项都已安装。

4

0 回答 0