世博会推送通知-错误:无法获取设备的GCM令牌

Ida*_*dan 5 notifications android push-notification react-native expo

我尝试在mt应用程序上实现Expo Notification,非常有线,在我的上一个expo应用程序中它运行良好,但是现在不行了,也许是因为当我尝试expo文档中的代码时显示的是版本更新

Error: Couldn't get GCM token for device
Run Code Online (Sandbox Code Playgroud)

这是pacage.json:

我的package.json:

{
  "name": "blabla",
  "version": "0.1.0",
  "private": true,
  "devDependencies": {
    "babel-plugin-transform-decorators-legacy": "^1.3.5",
    "jest-expo": "~27.0.0",
    "react-native-scripts": "1.14.0",
    "react-test-renderer": "16.3.1"
  },
  "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
  "scripts": {
    "start": "react-native-scripts start",
    "eject": "react-native-scripts eject",
    "android": "react-native-scripts android",
    "ios": "react-native-scripts ios",
    "test": "jest"
  },
  "jest": {
    "preset": "jest-expo"
  },
  "dependencies": {
    "es6-symbol": "^3.1.1",
    "expo": "^29.0.0",
    "firebase": "^5.4.1",
    "mobx": "^4.3.1",
    "mobx-react": "^5.1.0",
    "react": "16.3.1",
    "react-native": "~0.55.2",
    "react-native-animatable": "^1.3.0",
    "react-native-ionicons": "^0.2.2",
    "react-native-progress": "^3.5.0",
    "react-native-simple-toast": "0.0.8",
    "react-navigation": "^2.11.0"
  }
}
Run Code Online (Sandbox Code Playgroud)

小智 3

只需使用expo start而不是react-natives-scripts start来修复它。如果出现expo-cli错误,请运行npm install expo-cli --global

您可以在此处找到与此错误相关的更多讨论