phonegap / cordova splash screen aspect ratio issue phonegap / cordova splash screen aspect ratio issue android android

phonegap / cordova splash screen aspect ratio issue


Change this preference to true:

<preference name="SplashMaintainAspectRatio" value="true" />

It will keep your splash aspect ratio, and make the splash image fill your screen without being stretched. Think of it as the equivalent of css style background-size: cover;


To cover the patch-9 logo in all android versions, i had to do:

<preference name="SplashScreen" value="background" />

and disable the MaintainAspectRatio value:

<!-- <preference name="SplashMaintainAspectRatio" value="true" /> -->