You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I really appreciate this plugin!
I just noticed this thing:
When sending multiple notifications i can see only one bell icon (for the last one).
Here is a screenshot from Genymotion (in android phone have same behavior):
This is the simple code i am using:
$scope.notification_test = function()
{
var alarmTime = new Date();
alarmTime.setMinutes(alarmTime.getMinutes() + 1);
cordova.plugins.notification.local.schedule(
{
id: 1,
title: 'test 1',
text: 'This is a test notification message!',
at: alarmTime,
icon: "file://img/icon_app.png",
sound: "file://app_notification.wav",
});
}
Do you know why this happens?
The text was updated successfully, but these errors were encountered:
FrancescoMussi
changed the title
With multiple notifications it display only one icon
With multiple notifications it display only one (bell) icon
Jan 5, 2016
I really appreciate this plugin!
I just noticed this thing:
When sending multiple notifications i can see only one bell icon (for the last one).
Here is a screenshot from Genymotion (in android phone have same behavior):
This is the simple code i am using:
$scope.notification_test = function()
{
var alarmTime = new Date();
alarmTime.setMinutes(alarmTime.getMinutes() + 1);
cordova.plugins.notification.local.schedule(
{
id: 1,
title: 'test 1',
text: 'This is a test notification message!',
at: alarmTime,
icon: "file://img/icon_app.png",
sound: "file://app_notification.wav",
});
}
Do you know why this happens?
The text was updated successfully, but these errors were encountered: