skip to Main Content

I’m getting an error when installing stream-chat-expo library with version 5.17.1.

I did follow instructions from this website, for an Expo app (React Native).

When I run npm run ios I get the follow error.

None of these files exist: * node_modules/stream-chat-expo/src/handlers/pickDocument

enter image description here

Also seems like pickDocument references expo-document-picker, which I do have it installed.

2

Answers


  1. are you importing pickDocument somewhere in the app internally other than the default behavior?

    Login or Signup to reply.
  2. I think you just need to clean and reinstall the dependencies. Because if you notice, we don’t really export pickDocument from package/expo-package/src/handlers/index.ts anymore: https://github.com/GetStream/stream-chat-react-native/blob/v5.17.1/package/expo-package/src/handlers/index.ts

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