Undefined is not an object (ExponentConstants.linkinguri score)

Can someone help me on this issue that appears when I try to use expo in my native project.

Dependencies:

"expo": "^21.0.2",
"react": "^16.0.0-alpha.12",
"react-native": "^0.48.4",
"react-native-animatable": "^1.2.4",
"react-native-snap-carousel": "^3.3.2",
"react-native-swiper": "^1.5.13",
"react-navigation": "^1.0.0-beta.13"

Error message Error message

+4
source share
1 answer

If I use the create-react-native-app to run my project, I do not see the problem you were talking about. But if I use init-init to create my project, I see the same problem. To take full advantage of native and expo client response integration, follow these steps:

npm install -g create-react-native-app

create-react-native-app YourProjectName

cd YourProjectName

npm start

Hope this helps.

0
source

Source: https://habr.com/ru/post/1686924/


All Articles