Reputation: 12813
I would like to not have a splash screen for an app I am developing for Android and iOS using Cordova. The documentation for the plugin cordova-plugin-splashscreen explains how to do it but it works for Android and not iOS:
I have tried the suggestions in this question and they too don't work.
Has anyone successfully disabled the splash screen on iOS with Cordova and, if so, how was it done?
Upvotes: 2
Views: 1831
Reputation: 53361
On iOS there is a thing called launch images (or launch storyboard) and you can't get rid of it, neither control it. The splash screen plugin just mimic it so you can "extend" the time of the launch image, when the launch image disappears the splash screen appears with the same image.
Removing the plugin or adding it and setting delay and duration to 0 just removes the splash image, but not the launch image, it can't be avoided.
Upvotes: 1