cordova-plugin-background-mode
cordova-plugin-background-mode copied to clipboard
App is running in background doing heavy tasks. Even after configuring silent mode.
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 });
You solved this somehow? It appears to me as well.
try it with..
this.backgroundMode.configure({ text: 'Your message' });