android - send push notifications to a specific channel -
assuming subscribed more 1 channel, how can send message specific channel?
i used lines:
push.setmessage(msg); push.sendinbackground();
i tried use line push.setchannel(specific channel);
didn't work....
but it's not enough since sends message channels.
you have set channel push to.
public void pushdata(string channel, string message) { parsepush push = new parsepush(); push.setchannel(channel); push.setmessage(message); push.sendinbackground(); }
Comments
Post a Comment