Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I am using the c2dm module available on github for Titanium. Though I am successfully getting the registration ID and I am passing that server ID to my server end. But I am not able to get the notification on my android phone. I checked on my server side, I am receiving all the data and my server side is working fine on my native app, but not working on this module. may be I am able to listen to the notification here is my code in my app.js

var deviceID = Ti.App.Properties.getString('device_nid');
var sessID = Ti.App.Properties.getString('session_id');
Ti.API.info('Registering...');
c2dm.registerC2dm(senderId, {
success:function(e) {
    Ti.API.info('JS registration success event: ' + e.registrationId);
    alert('JS registration success event: ' +e.registrationId);

    // sending the registration  to my server
},
error:function(e) {
    alert("Error during registration: "+e.error);

    var message;
    if(e.error == "ACCOUNT_MISSING") {
        message = "No Google account found; you'll need to add one (in Settings/Accounts) in order to activate notifications";
    } else {
        message = "Error during registration: "+e.error
    }

    Titanium.UI.createAlertDialog({
        title: 'Push Notification Setup',
        message: message,
        buttonNames: ['OK']
    }).show();
},
callback:function(e) // called when a push notification is received
{
    Ti.API.info('JS message event: ' + JSON.stringify(e.data));

    var intent = Ti.Android.createIntent({
        action: Ti.Android.ACTION_MAIN,
        flags: Ti.Android.FLAG_ACTIVITY_NEW_TASK | Ti.Android.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED,
        className: 'com.blisstering.m2serve.FamilySirenM2serveActivity',
        packageName: 'com.findlaw.c2dm'
    });
    intent.addCategory(Ti.Android.CATEGORY_LAUNCHER);

    // This is fairly static: Not much need to be altered here
    var pending = Ti.Android.createPendingIntent({
        activity: Ti.Android.currentActivity,
        intent: intent,
        type: Ti.Android.PENDING_INTENT_FOR_ACTIVITY,
    });

    var notification = Ti.Android.createNotification({
        contentIntent: pending,
        contentTitle: 'New message',
        contentText: e.data.message,
        tickerText: "New message"
    });

    Ti.Android.NotificationManager.notify(1, notification);
    alert('new notification ' + e.data.message);
}
 });
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.