homerours / cordova-music-controls-plugin

A Cordova plugin displaying music controls in notifications (cordova-plugin-music-controls)
MIT License
155 stars 190 forks source link

User kill app, notification not. #162

Open expmaestro opened 4 years ago

expmaestro commented 4 years ago

Hi i use this plugin in Android app now. When user or OS kill app notification does not disappear.

tamsel12 commented 4 years ago

Yes , The same issue also i have faced , Has anyone solved this issue?

WASDLauterbach commented 3 years ago

I had the same problem and i've created a small workaround.

window.addEventListener('beforeunload', () => { this.musicControls.destroy(); });

Just call the EL somewhere in your logic and it will destroy the music control while killing the app.