【发布时间】:2017-06-07 10:39:33
【问题描述】:
我想从带有应用程序“A”的设备“A”向带有应用程序“B”的设备“B”发送推送通知,我该如何实现?
任何帮助将不胜感激。
我可以使用firebase 吗?
通过解析,我可以用类似的数字来定义它:
ParseQuery query = ParseInstallation.getQuery();
query.whereEqualTo("phone", "1234567890");
ParsePush push = new ParsePush();
push.setQuery(query);
push.sendPushInBackground();
在其他情况下如何实现?
【问题讨论】:
标签: android firebase push-notification android-notifications