Android push notification for adf mobile: Message is coming blank -
we trying implement push notification adf mobile. followed these 2 below blogs our implementation http://deepakcs.blogspot.in/2013/06/adf-mobile-push-notifications-with.html and server side have refered information present here http://javapapers.com/android/google-cloud-messaging-gcm-for-android-and-push-notifications/ we facing issue while receiving notification message gcm. when send notification our provider application receive notification alert sound , client app name message coming blank or null . our onmessage() method(this method invoke when push notification arrives in client app follows) public void onmessage(event event) { //parsing payload json string jsonbeanserializationhelper jsonhelper = new jsonbeanserializationhelper(); try { payloadserviceresponse serviceresponse = (payloadserviceresponse)jsonhelper.fromjson(payloadserviceresponse.class, event.getpayload()); map session = (map)adfmfjavautilities.evaluate...