Error: Native module not found
See original GitHub issueI have an issue with Video Compressor.
const result = await Video.compress('./853.mp4');
console.log('dfff', result);
Result - Error: Native module not found
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:7
Top Results From Across the Web
Native module not found" error when using uuidv4 in React ...
Describe the bug When I try to use uuidv4 in my vanilla react native (non-Expo) app, I'm getting "Error: Native module not found"...
Read more >Troubleshooting
If the app builds but an error appears indicating the “BugsnagReactNative” module was not found, or if the app fails to build indicating...
Read more >Troubleshooting
If the module points to an npm package (i.e. the name of the module doesn't with ./ ), then it's probably due to...
Read more >Troubleshooting
Missing libraries for React ... If you added React Native manually to your project, make sure you have included all the relevant dependencies ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I have the same issue till yesterday. I removed my
Podfile.lock
and runpod install
and suddenly I see that. I checked pod is installed.I tried manual installing it but it breaks in another error that I cannot resolve.
** UPDATE **
after putting a small console log on the
uuidv4
it seems that this is where it comes from.It only logs ‘before uuidv4’
*** UPDATE 2 *** after adding to my package.json the
yarn add react-native-get-random-values
and I runpod install
again everything worked.@swanand6300 can you install
and then run
pod install
and then check?