Reputation: 2569
I'm using PhoneGap Build 3.0, attempting to get rid of the blank white screen that appears after the splash screen.
I've done research and all I can find is references to PhoneGap and Cordova, not PhoneGap Build. None of the things I've tried have worked--mainly, disabling the auto splash screen hide, and hiding it automatically with JavaScript:
In the config.xml:
<feature name="SplashScreen">
<param name="ios-package" value="CDVSplashScreen" />
<param name="onload" value="true" />
</feature>
In index.html:
<script type="text/javascript" charset="utf-8" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
window.location.href = mysite.com
document.AddEventListener("deviceready", OnDeviceReady, false);
function OnDeviceReady() {
setTimeout(function() {
navigator.splashscreen.hide();
}, 6000);
};
</script>
But this appears to ignore me and auto-hide the screen regardless. I assume this is because this solution is not for PhoneGap Build, but I'm not sure how else to go about fixing this.
Upvotes: 21
Views: 30738
Reputation: 2512
I have the same problem "blank white screen after splash screen". For some reason I got this message in emulator iOS debug log:
deviceready has not fired after 5 seconds
It was resolved removing this meta tag from my index.html
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'">
Now it is working in iOS (No tested in android). Reference #1 here!
Also this is the documentation of cordova-plugin-splashscreen. (search for "iOS Quirk:"). Reference #2 here!
Upvotes: 0
Reputation: 559
I had similar issue only on iOS and in my case it was related to the way I implemented styles on index.html. In my case I had to provide styling for different brands and it was dependent on $scope variable. I used @import inside body and apparently iOS has a problem with it. I solved it by putting CSS links back to head. I used $rootScope and ng-if to trigger correct styles based on brand name. Somehow it was with @import it resulted with blank white screen after splash screen... I hope it can help anyone having same problem.
Upvotes: 0
Reputation: 45072
This are the steps
1) Add Splash screen preference in config.xml
<preference
name="SplashScreen"
value="screen" />
<preference
name="AutoHideSplashScreen"
value="true" />
<preference
name="SplashScreenDelay"
value="5000" />
<feature name="SplashScreen" >
<param
name="android-package"
value="org.apache.cordova.splashscreen.SplashScreen" />
<param
name="onload"
value="true" />
</feature>
2) Declare your splash screens in config.xml
<!-- you can use any density that exists in the Android project -->
<splash
density="land-hdpi"
src="res/drawable-land-hdpi/splash.png" />
<splash
density="land-ldpi"
src="res/drawable-land-ldpi/splash.png" />
<splash
density="land-mdpi"
src="res/drawable-land-mdpi/splash.png" />
<splash
density="land-xhdpi"
src="res/drawable-land-xhdpi/splash.png" />
<splash
density="port-hdpi"
src="res/drawable-hdpi/splash.png" />
<splash
density="port-ldpi"
src="res/drawable-ldpi/splash.png" />
<splash
density="port-mdpi"
src="res/drawable-mdpi/splash.png" />
<splash
density="port-xhdpi"
src="res/drawable-xhdpi/splash.png" />
</platform>
3) Finally Add this class into your android project structure under org.apache.cordova.splashscreen package
or
install it as Cordova plugin.
Upvotes: 0
Reputation: 3618
Try set the background color, on the configs and html. Example blue:
<preference name="SplashMaintainAspectRatio" value="false" />
<preference name="SplashScreenDelay" value="1" />
<preference name="backgroundColor" value="0xff0000ff" />
and on the html tag
<html style="background-color:#0000ff;>
Upvotes: 1
Reputation: 1717
If you were using whitelist plugin for your app, you may need a change in config.xml as follows to work with phonegap build.
<gap:plugin name="cordova-plugin-whitelist" source="npm" version="~1" />
This was the cli spec in my config.xml.
<preference name="phonegap-version" value="cli-5.2.0" />
Upvotes: 1
Reputation: 383
I want to add that I had a similar issue and in my case it was not the splash screen.
In my case using PhoneGap build and Git, I added a javascript file to my app but failed to include and push the new file to my git repository. This caused my the app to work locally but when the build server pulled the latest code, it showed the white screen on the PhoneGap build.
PhoneGap initialized, but Kendo UI did not like the missing referenced js class and failed. It was a PhoneGap noob mistake but i want to share just incase it helps someone who has a similar issue and the splash screen fix does not work. It could be a javascript error occurring before your mobile ui framework loads.
Upvotes: 8
Reputation: 6814
Totally feel your pain on this. The docs for PhoneGap Build need a lot of work. I've been fighting with this the last couple of days myself. After much trial and error, this is what has worked for me.
Within config.xml:
<!-- Do not auto hide splash on iOS -->
<preference name="AutoHideSplashScreen" value="false" />
<!-- Do not auto hide splash on Android -->
<preference name="SplashScreenDelay" value="10000"/>
<gap:plugin name="org.apache.cordova.splashscreen" />
Android does not seem to have an AutoHide param, so we just give it a long delay. We will hide it manually with JS before this 10 seconds is reached.
Adding the plugin reference in the config.xml is needed for the javascript code navigator.splashscreen.hide();
to work.
Also, I found for my project (using Kendo UI Mobile) that no setTimeout delay was needed within onDeviceReady
. I am guessing, that once you get the correct params within your config.xml, you will see the same in your app.
My onDeviceReady
looks like this:
document.addEventListener('deviceready', function() {
navigator.splashscreen.hide();
});
Tested on iOS 6, and Android 4.1 using PhoneGap Build 3.1.
Upvotes: 42