我在我的cordova应用程序中使用phonegap-plugin-push接收来自firebase的推送通知:
PushNotification.init({
android: {
iconColor: "#ffb800",
senderID: "725892xxxxxx"
},
ios: {
"sound": true,
"vibration": true,
"badge": true
},
windows: {}
});
当我启动应用程序时,我收到以下错误消息:
ERROR: Couldn't connect to firebase
在PushNotification.init语句中。 有人知道可能导致此错误的原因吗?
提前致谢!
答案 0 :(得分:0)
我能够通过在config.xml中将插件降级到2.0.0版来解决这个问题。