Is it possible to get rid of the status bar in iOS7 when using Phonegap Build 3.1? I can remove the status bar when building locally in Xcode, but as soon as I try Phonegap Buil
Simply install the status bar plugin (I'm using Cordova 5.x):
cordova plugin add cordova-plugin-statusbar@1.0.1
The in your code just reference its global variable and use .hide():
StatusBar.hide()