Home > Enterprise >  Error after buillding React Native on version 0.70
Error after buillding React Native on version 0.70

Time:09-15

Error description

After the App builds successfully, I got this error at my Metro while trying to install the app.

My react-native version is 0.70.

This the error: Error: Exception in HostFunction: java.lang.UnsatisfiedLinkError: dlopen failed: library "libreanimated.so" not found

CodePudding user response:

The error is coming because of react-native-reanimated library either remove the library or

Use latest version

And

Go to root folder

cd android && ./gradlew clean

or check this

https://github.com/software-mansion/react-native-reanimated/pull/3551/commits/25defa25d22a50dc068ac720ac4f3d7bde76aa17

  • Related