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
click on the "projectname-Info.plist" file under the XCode root project folder , you will be shown with an UI where you can see key vs values entries ,you can add/delete keys, add a new key just look for "Status bar is initially hidden" and set "YES" as the value.
This worked for me:
<preference name="fullscreen" value="true" />
I'm working on Android.
With Cordova, I had to do actually 2 things.
When I build with XCode I set in Target->Statusbar style to -> HIDDEN this would hide statusbar at startup on your splash screen.
You have to hide it also on device ready with plugin. Otherwise, it will reappear. To do that, install plugin:
cordova plugin add org.apache.cordova.statusbar
and call this on deviceready:
StatusBar.hide();