-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Notification doesn't raise in notification bar #1210
Comments
Use the template in #1188 to provide the right information. When you update this, add in more about what you expect to see and when, e.g. is the app in the foreground or background? What are your notification settings in the control panel. We get notifications appear at the top of the screen when we set them. |
My environment:
Expected Behaviour: Actual Behaviour: Steps to reproduce: |
We use this specific plugin on IOS 10 and we do get notifications shown in the bar. See #1176. |
Still I'm not getting it. |
You need to start to look into your code and configuration. We have it working with that plugin version. I'd create a dummy app and start from there. |
Closed as no update from original poster |
Hi Katzer,
I'm using your Cordova-local-notification plugin in my Cordova app.
In my project I used
So, this my problem. I can get the notification on the time, the trigger is working good. What the weird thing is happened means, the notification doesn't show in the notification bar in ios 10.1. But the same code working good on android.
var new_schedule = {
id: 1,
text: notificationTitle,
at: timeStamp,
badge: 1,
};
cordova.plugins.notification.local.schedule(new_schedule, function() {
console.log('notification scheduled');
});
cordova.plugins.notification.local.schedule(new_schedule, function() {
console.log('notification scheduled'); // it gives true
});
This is the code I used in my project. I even checked for permission also but it gives true for me. What would be the issue. Please help me.
The text was updated successfully, but these errors were encountered: