Skip to content Skip to sidebar Skip to footer

Gcm Console Shows 0 (zero) Requests After A Successful

From my ASP.NET web service and using my GCM Browser API key I can successfully send a GCM Push Notification getting the following success response: {'multicast_id':462380469982115

Solution 1:

GcmBroadcastReceiver and GcmIntentService shouldn't be inner classes of your activity class. They should be regular (top level) classes.

When you declare them as .GcmBroadcastReceiver and .GcmIntentService in your manifest, in means they should be located at com.MichaelResslerFineArt.eclipmessenger.GcmBroadcastReceiver and com.MichaelResslerFineArt.eclipmessenger.GcmIntentService, but since you implemented them as inner classes, they are actually located in com.MichaelResslerFineArt.eclipmessenger.ProfileActivity.GcmBroadcastReceiver and com.MichaelResslerFineArt.eclipmessenger.ProfileActivity.GcmIntentService, so they cannot be found when the message reaches your device.

Post a Comment for "Gcm Console Shows 0 (zero) Requests After A Successful"