How to solve White Splash Screen Problem on Android ! =)

I found a solution for the White SplashScreen problem. With the last version of Ionic, you need to verify a line in your config.xml file :

Make sure you have the line :
<preference name="SplashScreen" value="screen"/>

Instead of this wrong one :
<preference name="SplashScreen" value="splash"/>

You need to have the value “screen” here and not the old version which is “splash” !!!

Now my SplashScreen is not white anymore and it takes my resources files generated from PSD file.

And here is my Ionic Info prompt :

Cordova CLI: 6.3.1
Ionic Framework Version: 2.0.0
Ionic CLI Version: 2.2.1
Ionic App Lib Version: 2.2.0
Ionic App Scripts Version: 1.0.0
ios-deploy version: 1.9.1
ios-sim version: 5.0.13
OS: macOS Sierra
Node Version: v6.9.5
Xcode version: Xcode 8.2.1 Build version 8C1002

Sorry for revive this topic, but i have to put my solution for the White Splash Screen (ionic + Capacitor).

I added Capacitor to my ionic v3 project, and have the White Splash Screen problem. I tried all of the comments in differents topics. My last try was this:

I read Capacitor documentation:

And i added this to my capacitor.config.json file.

{
  "plugins": {
    "SplashScreen": {
      "launchShowDuration": 3000,
      "launchAutoHide": true,
      "backgroundColor": "#ffffffff",
      "androidSplashResourceName": "splash",
      "androidScaleType": "CENTER_CROP",
      "androidSpinnerStyle": "large",
      "iosSpinnerStyle": "small",
      "spinnerColor": "#999999",
      "showSpinner": true,
      "splashFullScreen": true,
      "splashImmersive": true
    }
  }
}

And works for my app! Just have to read the documentation. I hope this can help to other users.