添加 react-native-jitsi-meet 库后应用程序崩溃
Posted
技术标签:
【中文标题】添加 react-native-jitsi-meet 库后应用程序崩溃【英文标题】:App being crashed after adding the react-native-jitsi-meet library 【发布时间】:2020-09-28 18:55:10 【问题描述】:我正在尝试使用 react-native-jitsi-meet 库来实现视频会议功能。但是应用程序正在崩溃而没有显示任何问题。
我已经使用添加包并实现了 react 版本> 0.60 的android进程,如文档中所述(https://github.com/skrafft/react-native-jitsi-meet)无法找到问题。 JS 文件中也没有添加任何代码。
我也尝试过react-native-jitsi-meet module not found,但问题仍然存在。
【问题讨论】:
它基于您在机器中使用的节点版本以及 Jitsi 节点依赖项带来的问题。 【参考方案1】:正如文档中指定的那样,我们已经将 app.bundle 更改为重命名,并且它的捆绑不正确,因此进行此更改。 删除以下文件
android/app/src/main/assets/index.android.bundle
npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/app.bundle --assets-dest android/app/src/main/res/ && cd android && ./gradlew
assembleDebug
【讨论】:
以上是关于添加 react-native-jitsi-meet 库后应用程序崩溃的主要内容,如果未能解决你的问题,请参考以下文章