expo android 应用因 table 未找到而未加载

expo android app not loading due to table not found

每当我尝试在 phone 上加载应用程序时,突然出现以下错误。我尝试更改为之前的提交(应该有效),重新安装所有包,"git reset --hard",但所有这些仍然导致相同的红屏。 我尝试更新一些软件包,但其中 none 似乎有效。 我自己没有连接到 sqlite 数据库,所以这个 sqlite 连接可能是由 expo 或其他包设置的内部数据库。

上面写着:

no such table: catalystLocalStorage (code 1): , while compiling: SELECT key FROM catalystLocalStorage

我的Package.json文件

{
  "name": "app",
  "version": "1.0.0",
  "private": true,
  "devDependencies": {
    "exp": "^45.1.0",
    "flow-bin": "0.52.0",
    "flow-typed": "2.1.5",
    "prettier": "1.5.3",
    "react-native-scripts": "1.1.0",
    "react-test-renderer": "16.0.0-alpha.12"
  },
  "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
  "scripts": {
    "postinstall": "remotedev-debugger",
    "start": "exp start --tunnel",
    "eject": "react-native-scripts eject",
    "android": "react-native-scripts android",
    "ios": "react-native-scripts ios"
  },
  "dependencies": {
    "@expo/vector-icons": "^6.1.0",
    "color": "1.0.3",
    "expo": "^21.0.0",
    "lodash": "4.13.1",
    "moment": "2.13.0",
    "native-base": "2.3.3",
    "react": "16.0.0-alpha.12",
    "react-native": "0.47.2",
    "react-native-gifted-chat": "0.2.7",
    "react-native-star-rating": "^1.0.8",
    "react-native-vector-icons": "^4.4.2",
    "react-navigation": "1.0.0-beta.11",
    "react-redux": "5.0.5",
    "redux": "3.7.2",
    "redux-form": "7.0.3",
    "redux-persist": "4.8.3",
    "redux-thunk": "2.2.0",
    "remote-redux-devtools": "0.5.0",
    "remote-redux-devtools-on-debugger": "^0.8.0"
  }
}

这感觉像是一件疯狂的事情,真的很令人沮丧。有谁知道问题可能是什么?提前致谢。

对于以后遇到此问题的任何人:问题出在我的手机上 phone。在我重新安装应用程序并清除了一些额外的东西后space,它运行正常。