我试图通过使用react本机jitsi-meet库来实现视频会议功能。但是应用程序在没有显示任何问题的情况下就崩溃了。
我使用了添加包,并实现了react版本> 0.60的android,如文档(https://github.com/skrafft/react-native-jitsi-meet)中提到的,无法找到问题。也没有在JS文件中添加任何代码。
我也尝试过react-native-jitsi-meet module not found,但问题仍在继续。
发布于 2021-09-13 09:30:13
由于它是在文档中指定的,我们已经将app.bundle更改为重命名,并且它不正确地捆绑,因此进行了更改。删除以下文件
android/app/src/main/assets/index.android.bundlenpx 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
https://stackoverflow.com/questions/62285275
复制相似问题