App Center Push
For more info, please see https://docs.microsoft.com/en-us/appcenter/sdk/push/cordova
Installation
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Supported Platforms
- Android
- iOS
Usage
import { AppCenterPush } from '@ionic-native/app-center-push/ngx';
constructor(private appCenterPush: AppCenterPush) { }
...
this.appCenterPush.setEnabled(true).then(() => {
this.appCenterPush.addEventListener('My Event').subscribe(pushNotification => {
console.log('Recived push notification', pushNotification);
});
});