Has anyone encountered this error:
Tunnel packager.yu-tyd.my-app.exp.direct not found
My app is just simple hello 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 is causing 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 could I be missing?