I created an Ionic2 app and successfully launched it on Google Play store. Everything is running smoothly except for one issue - a white page that appears before the app's home view. Can anyone provide guidance on how to resolve this problem?
For further clarification, please refer to the Video.
Important: This issue is specific to the published version and does not occur in the development environment.
My hunch is that it pertains to the splash screen. Which setting should I adjust?
config.xml
<preference name="webviewbounce" value="false" />
<preference name="UIWebViewBounce" value="false" />
<preference name="DisallowOverscroll" value="true" />
<preference name="android-minSdkVersion" value="16" />
<preference name="BackupWebStorage" value="none" />
<preference name="SplashMaintainAspectRatio" value="true" />
<preference name="FadeSplashScreenDuration" value="300" />
<preference name="SplashShowOnlyFirstTime" value="false" />
<preference name="SplashScreen" value="screen" />
<preference name="SplashScreenDelay" value="3000" />