The sample class showing how you can send push notifications for different "providers", such as APNS, FCM, ADM and WNS.
More...
|
static int | notifyAll (int id, String title, String text, String serverMessage, String notificationProfile, int badge) throws Throwable |
| Sends a push notification to every registered device. More...
|
|
static boolean | notifyTopic (String topic, int id, String title, String text, String serverMessage, String notificationProfile, int badge) throws Throwable |
| Sends a push notification to every registered device. More...
|
|
static int | notifyItems (int id, List< Registrator.Item > items, String title, String text, String serverMessage, String notificationProfile, int badge) throws Throwable |
| Sends a push notification to every device in items list. More...
|
|
static boolean | notifyFCM (int id, final String topic, String title, String text, String serverMessage, String notificationProfile, int badge) throws Throwable |
| Sends a push notification to Google Play featured Android devices, which are subscribed to the specified topic. More...
|
|
static int | notifyFCM (int id, List< Registrator.Item > items, String title, String text, String serverMessage, String notificationProfile, int badge) throws Throwable |
| Sends a push notification to Google Play featured Android devices. More...
|
|
static boolean | notifyFCM (int id, final String addresseeKey, final Object addresseeValue, String title, String text, String serverMessage, String notificationProfile, int badge) throws Throwable |
| Sends a push notification to Google Play featured Android devices. addresseeKey can be one of: "registration_ids", "to" or "topic" with an appropriate value of addresseeValue. More...
|
|
static int | notifyADM (int id, List< Registrator.Item > items, String title, String text, String serverMessage, String notificationProfile, int badge) throws Throwable |
| Sends a push notification to Amazon Android devices. More...
|
|
static int | notifyAPNS (int id, List< Registrator.Item > items, String title, String text, String serverMessage, String notificationProfile, int badge) throws Throwable |
| Sends a push notification to iOS devices. com.notnoop.apns library is used (its source code is provided). More...
|
|
static int | notifyWNS (int id, List< Registrator.Item > items, String title, String text, String serverMessage, String notificationProfile, int badge) throws Throwable |
| Sends a push notification to Windows/Windows Phone devices. More...
|
|
The sample class showing how you can send push notifications for different "providers", such as APNS, FCM, ADM and WNS.