我正在尝试使用 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 类的实例可能是什么原因?所有依赖项都已安装。