有没有人遇到过这个错误:
Tunnel packager.yu-tyd.my-app.exp.direct not found
我的应用程序只是简单的 hello world
import Expo from 'expo'
import React from 'react'
import { Text } from 'react-native'
const App = () => (
<Text>Hello World</Text>
)
Expo.registerRootComponent(App)
不确定是什么导致了错误。这是我的依赖项:
"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"
}
我会错过什么?