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.
Asked
Active
Viewed 185 times
1 Answers
0
use this in your js file:
cordova.plugins.backgroundMode.enable();
// or
cordova.plugins.backgroundMode.setEnabled(true);

Hitarthi Panchal
- 392
- 2
- 11
-
I try this to implement but unable to achieve my required feature. – Yasir Aziz Jul 07 '17 at 13:58