After adding cordova-plugin-mfp, cordova-plugin-statusbar no longer works.
Steps to recreate:
Create a new Cordova project with statusbar plugin:
cordova create test cd test cordova platform add ios cordova plugin add --save cordova-plugin-statusbarAdd the following text to config.xml:
<feature name="StatusBar"> <param name="ios-package" value="CDVStatusBar" onload="true" /> </feature> <preference name="StatusBarStyle" value="default" />Run the project and note the status bar text is black (default!).
Change the added line in config.xml:
<preference name="StatusBarStyle" value="blacktranslucent" />Run the project and note the status bar text is white (hooray!).
Add the cordova-plugin-mfp plugin:
cordova plugin add --save cordova-plugin-mfpRun the project and note the status bar text is black (boo!).
At this point, the StatusBarStyle changes have no effect at all.