Hello,
I'm using the plugin cordova-plugin-statusbar and am attempting to set the StatusBarOverlaysWebView to false so the status bar does not overlay the webview but I can't get it to work:
with phonegap version cli-5.2.0 and setting the StatusBarOverlaysWebView to false
PhoneGap Build produces the following config.xml in the generated .ipa file which appears to include 2 settings for StatusBarOverlaysWebView. One with my set preference and the other with StatusBarOverlaysWebView = true.
Is this a bug or am I missing something?
thanks in advance
I'm using the plugin cordova-plugin-statusbar and am attempting to set the StatusBarOverlaysWebView to false so the status bar does not overlay the webview but I can't get it to work:
<gap:plugin name="cordova-plugin-statusbar" source="npm" version="1.0.1" />
with phonegap version cli-5.2.0 and setting the StatusBarOverlaysWebView to false
<preference name="StatusBarOverlaysWebView" value="false" />
PhoneGap Build produces the following config.xml in the generated .ipa file which appears to include 2 settings for StatusBarOverlaysWebView. One with my set preference and the other with StatusBarOverlaysWebView = true.
Is this a bug or am I missing something?
thanks in advance
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.cordova.helloCordova" version="2.0.0" xmlns="http://www.w3.org/ns/widgets">
<name>
Hello Cordova
</name>
<description>
A sample Apache Cordova application that responds to the deviceready
event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<preference name="AllowInlineMediaPlayback" value="false" />
<preference name="BackupWebStorage" value="cloud" />
<preference name="DisallowOverscroll" value="false" />
<preference name="EnableViewportScale" value="false" />
<preference name="KeyboardDisplayRequiresUserAction" value="true" />
<preference name="MediaPlaybackRequiresUserAction" value="false" />
<preference name="GapBetweenPages" value="0" />
<preference name="PageLength" value="0" />
<preference name="PaginationBreakingMode" value="page" />
<preference name="PaginationMode" value="unpaginated" />
<feature name="LocalStorage">
<param name="ios-package" value="CDVLocalStorage" />
</feature>
<preference name="phonegap-version" value="cli-5.2.0" />
<preference name="android-minSdkVersion" value="15" />
<preference name="android-targetSdkVersion" value="22" />
<preference name="android-build-tool" value="gradle" />
<preference name="deployment-target" value="8.0" />
<preference name="SplashScreen" value="screen" />
<preference name="KeepRunning" value="True" />
<preference name="ShowTitle" value="True" />
<preference name="InAppBrowserStorageEnabled" value="True" />
<preference name="SuppressesIncrementalRendering" value="False" />
<preference name="orientation" value="portrait" />
<preference name="fullscreen" value="true" />
<preference name="BackgroundColor" value="0x000000" />
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="StatusBarBackgroundColor" value="#008102" />
<preference name="StatusBarStyle" value="lightcontent" />
<content src="index.html" />
<feature name="Camera">
<param name="ios-package" value="CDVCamera" />
</feature>
<preference name="CameraUsesGeolocation" value="false" />
<feature name="Device">
<param name="ios-package" value="CDVDevice" />
</feature>
<feature name="Compass">
<param name="ios-package" value="CDVCompass" />
</feature>
<feature name="SplashScreen">
<param name="ios-package" value="CDVSplashScreen" />
<param name="onload" value="true" />
</feature>
<feature name="StatusBar">
<param name="ios-package" value="CDVStatusBar" />
<param name="onload" value="true" />
</feature>
<preference name="StatusBarOverlaysWebView" value="true" />
<feature name="InAppBrowser">
<param name="ios-package" value="CDVInAppBrowser" />
</feature>
<feature name="Keyboard">
<param name="ios-package" onload="true" value="IonicKeyboard" />
</feature>
<feature name="FacebookConnectPlugin">
<param name="ios-package" value="FacebookConnectPlugin" />
<param name="onload" value="true" />
</feature>
<plugin name="FacebookConnectPlugin" value="FacebookConnectPlugin" />
<access origin="https://m.facebook.com" />
<access origin="https://graph.facebook.com" />
<access origin="https://api.facebook.com" />
<access origin="https://*.fbcdn.net" />
<access origin="https://*.akamaihd.net" />
</widget>


