I\'m working on implementing the twilio
package into my react-native project and when I require it in my file the project wont load and I\'m seeing the followin
It seems that React Native doesn't accept certain packages based on their dependencies, Twilio being one of these.
While not a direct solution, I created a work around to this issue by creating a separate Express server to make the Twilio call, and calling that route from within my React Native app.