skip to Main Content

Before the SDK 51 update came to Expo, my application was working, but now when I navigate between tabs or click a button with a navigator, the application closes, probably due to a simple error. What is the reason and how can I solve it?

I tried:

watchman watch-del '/Users/ege'

then:

watchman watch-project '/Users/ege'

2

Answers


  1. It is a fresh issue of expo sdk 51.
    You simply need to install reanimated library.

    npx expo install react-native-reanimated

    Then import it from top of your root layout file. (_layout.tsx)

    import "react-native-reanimated"

    More info at:
    https://github.com/expo/expo/issues/28618

    Login or Signup to reply.
  2. Thank you so much. This would’ve saved me days to discover! It was the first thing I found when updating!

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search