I want to send push notification from Device "A" with Application "A" to Device "B" with application "B" how I can achieve that?
Any help will be appreciated.
can I use firebase
with that?
With parse I can define that with number like :
ParseQuery query = ParseInstallation.getQuery();
query.whereEqualTo("phone", "1234567890");
ParsePush push = new ParsePush();
push.setQuery(query);
push.sendPushInBackground();
how can I achieve that in other cases ?