I have a react-native project that I created using create-react-native-app. I would like to play videos in this app. I tried react-native-video but it gave me the error
TypeError: undefined is not an object (evaluating '_reactNative.NativeModules.UIManager.RCTVideo.Constants')
I then tried using react-native-video-controls and it created the same error.
Other solutions seem to revolve around calling react-native link, but this doesn't work for a create-react-native-app app. Am I out of luck using react-native-video or is there another solution to avoiding this error?