0

How can we force show Music-Control in notification tray when Music is playing even after minimising application. I'm using Cordova-plugin-background-mode to show notification when app is in background but it is not fulfilling my requirement.

1 Answers1

0

use this in your js file:

cordova.plugins.backgroundMode.enable();
     // or
cordova.plugins.backgroundMode.setEnabled(true);
Hitarthi Panchal
  • 392
  • 2
  • 11