0

我正在尝试让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)

我找到了这篇文章并遵循了建议的建议,但应用程序不断崩溃。

任何人都可以给我任何建议吗?

谢谢你。

4

2 回答 2

1

如您的 StackTrace 所示,当您将null消息传递给Log.v.

可能messageId是 nullconsole.log("Sent with message ID: ", messageId);

尝试将其更改为

 console.log("Sent with message ID: ", messageId + "");

这只是用于调试目的的快速解决方案。

您可以检查的另一件事是在Cordova 代码代码中注释第 75 行

Log.v(ME + ":onMessage ", json.toString());

于 2013-03-05T19:58:59.487 回答
0

感谢 iTech 提供的提示,我注意到问题实际上出在服务器上;特别是服务器向设备发送消息的方式。

现在我使用node-gcm和这个脚本来发送消息:

var gcm = require('/usr/local/lib/node_modules/node-gcm');
var message = new gcm.Message();
var sender = new gcm.Sender('charsRepresentingAPIKey');
var registrationIds = [];

message.addData('message', 'hello');
message.addData('msgcnt', '1');
message.collapseKey = 'demo';
message.delayWhileIdle = true;
message.timeToLive = 3;

registrationIds.push('charsRepresentingRegIDOfDevice');

sender.send(message, registrationIds, 4, function (err, result) {
        console.log(result);
});

使用我之前的脚本(您可以在问题上看到它),不知何故数据未包含在消息中,因此当尝试在日志上打印包含数据的值时应用程序崩溃了。使用此脚本,这不会发生。

于 2013-03-06T00:05:27.213 回答