Remove Splash Screen in Ionic 2

Hi everybody. I try to remove the splash screen but I can’t
My app is based in Ionic Conference. Y try all:

  • remove the splash plugin

  • with code in app.ts

    hideSplashScreen() {
    if (Splashscreen) {
    setTimeout(() => {
    Splashscreen.hide();
    }, 1000);
    }
    }

  • remove all the splash tags in config.xml (and hide the splash with 0 seconds)

and nothing works…anybody can help? thank you very much!

Hi @armandof

add this code snippet:
<preference name="ShowSplashScreen" value="false"/>
at you config.xml

Hope that helps

Thanks,
Daniel

4 Likes