As usual it was my fault, I had forgotten that in the meantime I had modified this part of the code:
initializeApp() {
const context = this;
context.settings.initAppSettings();
context.platform.ready().then(() => {
context.statusBar.styleDefault();
context.splashScreen.hide();
...
}
Removing the context.platform.ready()
condition, so probably the tried to close the splash screen to soon,
Now it works.
Claudio