Tutorial by Examples

The push notification plugin requires an init an initialization which tells the plugin to start running using the sender id provided. let push = Push.init({ android: { senderID: "------------", }, ios: { alert: "true", badge: tru...
The registration step registers the app with the device's system and returns a registration id import { Push, RegistrationEventResponse} from "ionic-native"; //the push element is created in the initialization example push.on("registration", async (response:...
To receive push notifications we are supposed to tell the plugin to listen to incoming push notifications. This step is done after initialization & registration import { Push, NotificationEventResponse} from "ionic-native"; //the push element is created in the initial...

Page 1 of 1