As 913 splash screen problem

Sorry,I noticed my app splash screen in as 913 has only the npm logo.how to add my splash screen to my app?sorry for my ignorance.any pointers is appreciated.i guess I have to change my config .can anyone tell me what’s is the line to add? Thanks in advance,tst

There were no changes to splash screens in 9.1.3, nor do I have any idea why the npm logo would be showing on your splash screen.

Here is where you set the icon and splash for native apps:
https://wiki.appstudio.dev/VoltBuilder

<plugin name='cordova-plugin-splashscreen' source='npm' />
<preference name='SplashScreenDelay' value='2000' />
<preference name='AutoHideSplashScreen' value='true' />
<preference name='AndroidWindowSplashScreenAnimatedIcon' value='www/images/android12splash.png' />
<preference name='AndroidWindowSplashScreenBackground' value='#FFFFFF' />
<preference name='AndroidWindowSplashScreenAnimationDuration' value='2000' />```
Is these tag still applies for current splash screen requirement?

It should be this:

<icon src='resources/iconTemplate.png' />
<preference name='SplashScreenDelay' value='2000' />
<preference name='AutoHideSplashScreen' value='true' />
<preference name='AndroidWindowSplashScreenAnimatedIcon' value='resources/splashTemplate.png' />
<preference name='AndroidWindowSplashScreenBackground' value='{splashBackground}' />
<plugin name='cordova-plugin-splashscreen' source='npm' />