I have a basic expo project that I've eject as expokit
, and proceeded to run expo install react-native-ffmpeg
. When then running expo start
I was greeted with Native module cannot be null
on my iOS device and null is not an object (evaluating 'RNFFmpegModule.enableLogEvents')
.
After that, I re-read the react-native-ffmpeg
documentation and added pod 'react-native-ffmpeg', :podspec => '../node_modules/react-native-ffmpeg/ios/react-native-ffmpeg.podspec'
to my ios/Podfile
and ran pod install
. Still no luck.
After that, I deleted the node_modules
folder and yarn.lock
file, re-ran yarn
, went into the ios
directory, deleted the Pods
folder and Podfile.lock
file and re-ran pod install
and still had no luck!
The error is less than helpful. Any ideas where to look?