0.0.1 • Published 5 years ago

cordova-plugin-android-notification-manager v0.0.1

Weekly downloads
3
License
MIT
Repository
-
Last release
5 years ago

Usage

Get a notification channel

NotificationManager.getNotificationChannel('channel_id')
    .then(console.info)
    .catch(console.error);
    
// NotificationChannel {id: "channel_id", importance: 5, lightColor: 0, lockscreenVisibility: -1000, openSettings: ƒ, …}

Open a notification channel settings

Notification Channel Settings

From the manager

NotificationManager.openNotificationChannelSettings('channel_id')
    .then(console.info)
    .catch(console.error);
    
// OK

From a channel

NotificationManager.getNotificationChannel('channel_id')
    .then(function(channel) {
        channel.openSettings().
            .then(console.info)
            .catch(console.error);
    })
    .catch(console.error);
    
// OK

Open an app notification settings

Notification Channel Settings

NotificationManager.openAppNotificationSettings()
    .then(console.info)
    .catch(console.error);
    
// OK