I have requirement to group push for different sections. Like if title include G1 and other push with title G2 then two different push notification need to delivered on same handset
string message = "group";
string alertValue = "sports";
push.QueueNotification(android.WithJson("{ alert : " + message + ", alertValue: " + alertValue + " }"));
Above code might be working in iPhone but it is not working in Android it is giving Invalid JSON error. I want payload for android for grouping push notifications.