Has anyone encountered this error:
Tunnel packager.yu-tyd.my-app.exp.direct not found
My application is just a welcome world
import Expo from 'expo' import React from 'react' import { Text } from 'react-native' const App = () => ( <Text>Hello World</Text> ) Expo.registerRootComponent(App)
Not sure what causes the error. Here are my dependencies:
"dependencies": { "@expo/ex-navigation": "^2.9.2", "expo": "^15.0.2", "react": "~15.4.0", "react-native": "https://github.com/exponent/react-native/archive/sdk-15.0.0.tar.gz", "react-redux": "^5.0.3", "redux": "^3.6.0" }
What can I lose?
source share