No suitable injection token for parameter 'splashScreen' of class 'AppComponent'

Don’t do

private splashScreen: SplashScreen
...
this.splashScreen.show();

Just do SplashScreen.show();

Also, if it’s the app start, you don’t need to call show at all, just call hide when the app is initialized.