cordova-plugin-background-mode icon indicating copy to clipboard operation
cordova-plugin-background-mode copied to clipboard

App is running in background doing heavy tasks. Even after configuring silent mode.

Open deligence opened this issue 7 years ago • 2 comments
trafficstars

I'm using 0.7.2 version of this plugin in my project and I've tried all the below-mentioned settings but I'm still getting "App is running in background doing heavy tasks" notification. 1. cordova.plugins.backgroundMode.setDefaults({ title: '', text: '', icon: 'icon', color: '#ffffff', resume: false, hidden: true, bigText: false }); 2. cordova.plugins.backgroundMode.configure({ silent: true }); 3 .cordova.plugins.backgroundMode.setDefaults({ silent: true });

deligence avatar Jul 25 '18 11:07 deligence

You solved this somehow? It appears to me as well.

EinfachHans avatar Mar 02 '20 11:03 EinfachHans

try it with..

this.backgroundMode.configure({ text: 'Your message' });

elduglas avatar Jul 30 '20 13:07 elduglas