我正在尝试让GCM Cordova 插件在提供的示例应用程序中运行。我下载了源代码并在 Eclipse 中从现有代码创建了一个项目。
现在,在这个项目中有一个名为 CORDOVA_GCM_script.js 的文件,需要更改发件人 ID 以匹配我自己的 GCM 服务标识符(我从我的 Google 项目中获得):
window.plugins.GCM.register("my_sender_id", "GCM_Event", GCM_Success, GCM_Fail );
要将消息发送到我的应用程序,我将 node.js 与此脚本一起使用,正如 Holly Schinsky 在这篇文章中所解释的那样:
var GCM = require('gcm').GCM;
var apiKey = 'someCharsRepresentingMyKey';
var gcm = new GCM(apiKey);
var message = {
registration_id: 'myDeviceRegistrationId', // required
collapse_key: 'demo',
'message': 'Yourturn',
'title': 'My Game',
'msgcnt': '1'
};
gcm.send(message, function(err, messageId){
if (err) {
console.log("Something has gone wrong!");
} else {
console.log("Sent with message ID: ", messageId);
}
});
现在,当我在设备上运行应用程序时,它会启动并注册,但是当我尝试向它发送消息时,它会崩溃并存在消息“不幸的是,GCM 已停止”
LogCat 向我展示了这个:
03-05 20:15:39.897: E/AndroidRuntime(19007): FATAL EXCEPTION: IntentService[GCMIntentService-GCMIntentService-2]
03-05 20:15:39.897: E/AndroidRuntime(19007): java.lang.NullPointerException: println needs a message
03-05 20:15:39.897: E/AndroidRuntime(19007): at android.util.Log.println_native(Native Method)
03-05 20:15:39.897: E/AndroidRuntime(19007): at android.util.Log.v(Log.java:117)
03-05 20:15:39.897: E/AndroidRuntime(19007): at com.cordova2.gcm.GCMIntentService.onMessage(GCMIntentService.java:63)
03-05 20:15:39.897: E/AndroidRuntime(19007): at com.google.android.gcm.GCMBaseIntentService.onHandleIntent(GCMBaseIntentService.java:179)
03-05 20:15:39.897: E/AndroidRuntime(19007): at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:65)
03-05 20:15:39.897: E/AndroidRuntime(19007): at android.os.Handler.dispatchMessage(Handler.java:99)
03-05 20:15:39.897: E/AndroidRuntime(19007): at android.os.Looper.loop(Looper.java:137)
03-05 20:15:39.897: E/AndroidRuntime(19007): at android.os.HandlerThread.run(HandlerThread.java:60)
我找到了这篇文章并遵循了建议的建议,但应用程序不断崩溃。
任何人都可以给我任何建议吗?
谢谢你。