I have recently faced this issue while customizing JitsiMeet SDK and integrating with my existing App. Here I am going to share the solution of the error, how I solved it in my case. The App runs successfully but React Native shows the following error on the Device or Simulator screen. “Unable to resolve module lib-jitsi-meet/lib-jitsi-meet.min“. Sometimes it also shows “react/features/base/lib-jitsi-meet/_.native.js” in error. The exact screenshot of the error is the following.

Solution: “Unable to resolve module lib-jitsi-meet/lib-jitsi-meet.min”
We can resolve this error with few simple steps.
Step 1:
Providing that you are already inside “jitsi-meet-master” directory. Run the following command to navigate to “lib-jitsi-meet” directory.
cd node_modules/lib-jitsi-meet
Step 2:
Run the following command to install the missing packages inside lib-jitsi-meet.
yarn
That’s it. Now you can run Your App using “react-native run-ios” or “react-native run-android” commands and now you will not see the error.
If you are still facing some issues, feel free to ask in the comments section below.