Reputation: 5117
I created react-native project using create-react-native-app. In this I am importing Permissions module from expo,
import {Permissions} from "expo";
Later I realised that expo doesn't fullfill all my requirements (like social sharing etc), so I decided to eject the expo project. I ran following command to do so
"npm run eject"
After detaching, I installed expo as my project dependency to resolve imported Permissions module from expo.
"npm install expo"
Now when I run "npm run ios", I get this big error in my ios simulator.
Leads here is appreciated.
Thanks!
Upvotes: 8
Views: 4971