davidtoledo edited a comment on issue #990: URL: https://github.com/apache/cordova-ios/issues/990#issuecomment-707221927
> Guys I have it ... :-) It already works ... all dimensions need to be prepared ... don't ask me why, but it is so! > > ``` > <splash src="resources/ios/splash/Default@2x~universal~anyany.png" /> > <splash src="resources/ios/splash/Default@2x~universal~comany.png" /> > <splash src="resources/ios/splash/Default@2x~universal~comcom.png" /> > <splash src="resources/ios/splash/Default@3x~universal~anyany.png" /> > <splash src="resources/ios/splash/Default@3x~universal~anycom.png" /> > <splash src="resources/ios/splash/Default@3x~universal~comany.png" /> > <splash src="resources/ios/splash/Default@2x~iphone~anyany.png" /> > <splash src="resources/ios/splash/Default@2x~iphone~comany.png" /> > <splash src="resources/ios/splash/Default@2x~iphone~comcom.png" /> > <splash src="resources/ios/splash/Default@3x~iphone~anyany.png" /> > <splash src="resources/ios/splash/Default@3x~iphone~anycom.png" /> > <splash src="resources/ios/splash/Default@3x~iphone~comany.png" /> > <splash src="resources/ios/splash/Default@2x~ipad~anyany.png" /> > <splash src="resources/ios/splash/Default@2x~ipad~comany.png" /> > ``` > > and run: > > `ionic cordova build ios` > > Make sure cordova added it to Images.xcassets ... > **Do not change anything in info.plist** ... leave Launch screen interface file base name: CDVLaunchScreen Hi @davidpadych That's awesome! I thought this solution might work but I didn't have time to try it. Thanks for sharing! Will try it as soon as I have some time! The explanation is simple: iOS 14 is using another splash format other than the regular "Default@2x~universal~anyany.png". Maybe the default 3x (I don't know). Since we don't know which one is being used for a specific device, It seems to be a good idea to provide all of them, just like you did. Will try this solution soon and will let you know about the results, Thanks! ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
