Notification is still display after application close
See original GitHub issueHello,
Let me thank you first for awesome piece of work.
But i thinks there is something i found and stuck with blank notification(In notification bar) is still display after application close successfully or you can say close application in standard way in android.
My code for application is like below.
cordova.plugins.backgroundMode.setDefaults({ text:‘Doing heavy tasks.’}); // Enable background mode cordova.plugins.backgroundMode.enable();
// Called when background mode has been activated
cordova.plugins.backgroundMode.onactivate = function () {
setTimeout(function () {
// Modify the currently displayed notification
cordova.plugins.backgroundMode.configure({
text:'Running in background for more than 5s now.'
});
}, 5000);
}
Same as given in plugin documentation but still notification with blank text appear once close the application in standard way(Android 4.4.4).
Thanks for your time and consideration in advance.If you need more information for tracking issue feel free to ask.
-Niks
Issue Analytics
- State:
- Created 9 years ago
- Comments:11 (1 by maintainers)
Top Results From Across the Web
Notification still appear when app is closed - Stack Overflow
i'm trying to close notification when my app being closed,because when i close the app from (Recent Task / Swipe to exit),notification still...
Read more >Uninstalled app still showing in notification action center
I uninstalled an app and it still shows notifications in "Show notifications from these apps" The app in the picture is "rainmeter" and...
Read more >Control notifications on Android - Google Support
After you swipe down from the top of your screen, drag the notification slightly right or left. Then tap Settings . · Tap...
Read more >Android Notifications Not Showing Up? 10 Fixes You Can Try
Not seeing notifications show up on your Android phone? Try these fixes to get Android notifications working again.
Read more >Use notifications on your iPhone or iPad - Apple Support
Tap a single notification to open the app that it's from. Tap a group of notifications to view all recent notifications from that...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi Katzer,
Thanks for your reply.
It works fine once i upgrade from kitkat to lollipop.
-Niks
excuse me,I have not got the point ,my app still have the problem,have you solved it?