halie412 commented on issue #1401:
URL: https://github.com/apache/cordova-ios/issues/1401#issuecomment-2065591182

   @adirgan 
   
   Hi, i was stucked on same error some hours and is related to documentation, 
you need add to config.xml all the spash images manually in actual size in your 
platform ios, the size of each image you can find in 
https://cordova.apache.org/docs/en/6.x/reference/cordova-plugin-splashscreen/
   
   Take special attemption between universal and iphone are different, like:
   Default@2x~universal~anyany.png is 2732px X 2732px
   
   Default@2x~iphone~anyany.png is 1334px X 1334px
   
   Each image are on root project / res / screen / ios 
   
   I add this to my config:
   
   <platform name="ios">
           <splash src="res/screen/ios/Default@2x~universal~anyany.png" />
           <splash src="res/screen/ios/Default@2x~universal~comany.png" />
           <splash src="res/screen/ios/Default@2x~universal~comcom.png" />
           <splash src="res/screen/ios/Default@3x~universal~anyany.png" />
           <splash src="res/screen/ios/Default@3x~universal~anycom.png" />
           <splash src="res/screen/ios/Default@3x~universal~comany.png" />
           <splash src="res/screen/ios/Default@2x~iphone~anyany.png" />
           <splash src="res/screen/ios/Default@2x~iphone~comany.png" />
           <splash src="res/screen/ios/Default@2x~iphone~comcom.png" />
           <splash src="res/screen/ios/Default@3x~iphone~anyany.png" />
           <splash src="res/screen/ios/Default@3x~iphone~anycom.png" />
           <splash src="res/screen/ios/Default@3x~iphone~comany.png" />
           <splash src="res/screen/ios/Default@2x~ipad~anyany.png" />
           <splash src="res/screen/ios/Default@2x~ipad~comany.png" />
   </platform>


-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org

Reply via email to