Skip to content Skip to sidebar Skip to footer

Success:1 Still No Notification In Android

I am trying to send push notification through GCM but I am getting: { 'multicast_id':4793018731783267982, 'success':1, 'failure':0, 'canonical_ids':0, 'results': [ {

Solution 1:

Handle a notification on an Android device:

@OverridepublicvoidonMessageReceived(Stringfrom, Bundle data) {
   String message = data.getString("message");
   Log.d(TAG, "From: " + from);
   Log.d(TAG, "Message: " + message);
   // Handle received message here.
 }

For more info visit : https://developers.google.com/cloud-messaging/

Post a Comment for "Success:1 Still No Notification In Android"