We want to show our own splashscreens in our app. We nicely created all the different splashscreens but still the default splashscreen was shown.
I noticed the config.xml has lines like:
<splash src="res/android/screen-ldpi-landscape.png" qualifier="land-ldpi"/>
All the references I found online did not have the qualifier attribute but a density, so I changed them all to density resulting in the following lines:
<splash src="res/android/screen-ldpi-landscape.png" density="land-ldpi"/>
After this change all the splashscreens were shown correctly.
We are rather new to the app building process, do we need to configure some extra information to generate this correctly?