我正在尝试将 Jisti react-native SDK 集成到我的 expo 项目中并遇到错误
Invariant Violation: Your JavaScript code tried to access a native module that doesn't exist.
If you're trying to use a module that is not supported in Expo Go, you need to create a development build of your app. See https://docs.expo.dev/development/introduction/ for more info., js engine: hermes
LOG [TypeError: Cannot read property 'JitsiMeeting' of undefined]
@jitsi/react-native-sdk 支持 React Native 博览会吗?
我需要在我的 React Native Expo 应用程序中进行视频通话、屏幕共享、白板,是否可以使用此 API 实现此目的?
这是我的应用程序中的代码。
import { JitsiMeeting } from '@jitsi/react-native-sdk/index';
<JitsiMeeting
room={'ThisIsNotATestRoomName'}
serverURL={'https://meet.jit.si/'}
token={'dkhalhfajhflahlfaahalhfahfsl'} />
"@jitsi/react-native-sdk": "2.0.2"
可能需要使用开发构建来使用此人员。 尝试使用 npx expo prebuild 创建本机文件夹(ios 和 android)。接下来运行 npx expo run:android (或 ios) 来启动。希望对你有帮助。