Home > front end >  When I upgrade my React native project to version 0.69.0 I got this type of error
When I upgrade my React native project to version 0.69.0 I got this type of error

Time:06-28

After upgrading my react native project to version 0.69.0, I am getting this error

enter image description here

enter image description here

CodePudding user response:

The issue is coming because of react-native-reanimation.

I used a patch that worked for me. Attaching the git link of the patch.

https://github.com/software-mansion/react-native-reanimated/issues/3320#issuecomment-1166586113

CodePudding user response:

yarn add react-native-reanimated@next will upgrade you to the patched version

  • Related