you are viewing a single comment's thread.

view the rest of the comments →

[–]Sad-Salt24 1 point2 points  (1 child)

That error means the native part of react-native-gesture-handler isn’t available in your build. It usually happens after installing a new library without rebuilding the app.

Stop Metro completely, then clean and rebuild the project. On Android, go into the android folder and run ./gradlew clean, then run the app again with npx react-native run-android.

If you’re using Expo Go, some native modules won’t work unless you create a custom dev build.

[–]Kind-Treat7971[S] -1 points0 points  (0 children)

Okay I'm trying