iOS - 'NativeReanimated' could not be found.
See original GitHub issueDescription
When running iOS I get the following error:
Invariant Violation: TurboModuleRegistry.getEnforcing(...): 'NativeReanimated' could not be found. Verify that a module by this name is registered in the native binary.
I’ve followed the instructions on the website. Android works fine, this is just an issue with iOS.
I’ve attempted to wipe all the cache, pods, clean install, etc. Nothing seems to solve the problem.
Steps To Reproduce
Here is an example project: https://github.com/BrendonSled/react-native-reanimated-example
Expected Behavior
Runs
Actual Behavior
Doesn’t run
Snack or minimal code example
https://github.com/BrendonSled/react-native-reanimated-example
Package versions
- React: 17.0.1
- React Native: 0.63.4
- React Native Reanimated: 2.0.0
- NodeJS: 14.15.5
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:16
Top Results From Across the Web
Invariant Violation: TurboModuleRegistry.getEnforcing ...
getEnforcing(...): 'NativeReanimated' could not be found. Verify that a module by this name is registered in the native binary. I'm using ...
Read more >Installation | React Native Reanimated - Software Mansion
First step is to install react-native-reanimated as a dependency in your project ... After adding the react-native-reanimated/plugin to your project you may ......
Read more >'imageloader' could not be found. - You.com | The AI Search ...
Cannot startup ios app after upgrade RN version from 0.59.9 to 0.62.2. Have no idea where the issue is and ... 'NativeReanimated' could...
Read more >'DevSettings' could not be found-React Native
react-native bundle --entry-file='index.js' --bundle-output='./ios/main.jsbundle' --dev=false --platform='ios' --assets-dest='./ios'. Jackson Smith 516.
Read more >Reanimated - Expo Documentation
react-native-reanimated provides an API that greatly simplifies the process of creating ... Android Device, Android Emulator, iOS Device, iOS Simulator, Web ...
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 finally got it.
In the AppDelegate.m I was using
initWithBundleURL
which does not seem to be supported. Instead usinginitWithBridge
works.here is my change:
This was a missed step when upgrading from RN 0.58 -> 0.59
Very weird, as you can see from the screenshot I’m not in the debugging mode and I received that error.