Android app splashscreens, generated config.xml seems to be wrong

0
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?    
asked
2 answers
1

No, you did the right change. Strange that it generates qualifier instead of density. And you also added a line for when the device is in portscape instead of landscape?

<splash src="res/android/screen-ldpi-landscape.png" density="port-ldpi"/>

Regards,

Ronald

answered
1

For completeness, contacted Mendix and this was recognized as a bug and will be changed.

For now you could change the attribute to density yourself.

answered