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
Usually, you would edit the info.plist and add this key:
UIViewControllerBasedStatusBarAppearance
But as you can't do this on build, you'll have to add a plugin:
https://github.com/phonegap-build/StatusBarPlugin/blob/master/README.md
And then:
StatusBar.hide();