1

I'm trying to implement the video conference functionality by using the react-native-jitsi-meet library. But app is being crashed without showing any issue.

I have used added the package and implemented the android process for the react version > 0.60 as mentioned in the document(https://github.com/skrafft/react-native-jitsi-meet) unable to find the issue. Haven't added any code in the JS file too.

I have tried react-native-jitsi-meet module not found also but still the issue continues.

Abdelsalam Shahlol
  • 1,621
  • 1
  • 20
  • 31
Radha
  • 11
  • 3

1 Answers1

1

As it is specified in documentation we already changed the app.bundle as rename and it is bundling incorrectly so do this changes. Remove the following file

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

Pravin Ghorle
  • 606
  • 7
  • 7