I'm at my wits end at this point, trying to get past the IOS7 issue whereby the statusbar overlaps the top of my app. The steps I've taken are:
phonegap plugins add org.apache.cordova.statusbar
- Adding the following to my main config.xml:
<gap:plugin name="org.apache.cordova.statusbar"/> <preference name="fullscreen" value="true" /> <preference name="StatusBarOverlaysWebView" value="false" /> <preference name="StatusBarStyle" value="default" /> <feature name="StatusBar"> <param name="ios-package" value="CDVStatusBar" onload="true" /> </feature>
- From reading various SO posts, I've tried several times adding/removing both the plugin and the ios platform.
The plugin now successfully adjusts the status bar behavior on the simulator (running cordova run ios
) but when I use Phonegap Build to actually run it on the device, alas the status bar still overlays my app webview.
Thanks in advance for the help.