I have used the google cloud messaging api and integrated it using php and curl method in my server side . I am receiving the notification messages too ,
But the problem is i am not able to increment the count of the notification. I know i have to keep a track of unread messages for each user in client side . But i dont know which parameter changes the notificaion count in the message array i am using ... please check the below array and tell me which parameter sends the notification count over the app icon . similar to badge parameter in ios push notification
$msg = array (
'message' => 'Test message from app',
'title' => 'This is a title. title',
'vibrate' => 2,
'sound' => 'beep.wav',
'largeIcon' => 'large_icon',
'smallIcon' => 'small_icon',
'msgcnt'=>3
);