Error ":" The source image 2208x2208 is too small for Default-Landscape @ ~ ipadpro.png, it requires at least 2732x2048 source file "

I have a screensaver = 2208 x 2208. And the application icon is 192 X 192. I use ionic1, but still I run the command as a command ionic cordova resourceto create an application icon and a screensaver.

On Android, it works fine. But when I did this for iOS, it gave me this error:

Error: encountered a fault code (400) for https://res.ionic.io/api/v1/transform body: {"Error": "The original image 2208x2208 is too small for Default-Landscape @ ~ ipadpro.png, requires both minimum 2732x2048 source file "}

I do not know what problems it was. I make the splash screen just as the right size, but I don’t know why it doesn’t work for iOS.

I can upgrade my ionic version to get my application running.

Update

<platform name="ios">
        <allow-intent href="itms:*" />
        <allow-intent href="itms-apps:*" />
        <preference name="orientation" value="portrait" />
        <icon height="57" src="resources/ios/icon/icon.png" width="57" />
        <icon height="114" src="resources/ios/icon/icon@2x.png" width="114" />
        <icon height="40" src="resources/ios/icon/icon-40.png" width="40" />
        <icon height="80" src="resources/ios/icon/icon-40@2x.png" width="80" />
        <icon height="120" src="resources/ios/icon/icon-40@3x.png" width="120" />
        <icon height="50" src="resources/ios/icon/icon-50.png" width="50" />
        <icon height="100" src="resources/ios/icon/icon-50@2x.png" width="100" />
        <icon height="60" src="resources/ios/icon/icon-60.png" width="60" />
        <icon height="120" src="resources/ios/icon/icon-60@2x.png" width="120" />
        <icon height="180" src="resources/ios/icon/icon-60@3x.png" width="180" />
        <icon height="72" src="resources/ios/icon/icon-72.png" width="72" />
        <icon height="144" src="resources/ios/icon/icon-72@2x.png" width="144" />
        <icon height="76" src="resources/ios/icon/icon-76.png" width="76" />
        <icon height="152" src="resources/ios/icon/icon-76@2x.png" width="152" />
        <icon height="167" src="resources/ios/icon/icon-83.5@2x.png" width="167" />
        <icon height="29" src="resources/ios/icon/icon-small.png" width="29" />
        <icon height="58" src="resources/ios/icon/icon-small@2x.png" width="58" />
        <icon height="87" src="resources/ios/icon/icon-small@3x.png" width="87" />
        <splash height="1136" src="resources/ios/splash/Default-568h@2x~iphone.png" width="640" />
        <splash height="1334" src="resources/ios/splash/Default-667h.png" width="750" />
        <splash height="2208" src="resources/ios/splash/Default-736h.png" width="1242" />
       <!--  <splash height="1242" src="resources/ios/splash/Default-Landscape-736h.png" width="2208" />
        <splash height="1536" src="resources/ios/splash/Default-Landscape@2x~ipad.png" width="2048" />
        <splash height="2048" src="resources/ios/splash/Default-Landscape@~ipadpro.png" width="2732" /> -->
       <!--  <splash height="768" src="resources/ios/splash/Default-Landscape~ipad.png" width="1024" /> -->
        <splash height="2048" src="resources/ios/splash/Default-Portrait@2x~ipad.png" width="1536" />
        <splash height="2732" src="resources/ios/splash/Default-Portrait@~ipadpro.png" width="2048" />
        <splash height="1024" src="resources/ios/splash/Default-Portrait~ipad.png" width="768" />
        <splash height="960" src="resources/ios/splash/Default@2x~iphone.png" width="640" />
        <splash height="480" src="resources/ios/splash/Default~iphone.png" width="320" />
    </platform>
+6
source share
2 answers

This error occurs due to the incorrect size of the splash screen resource. You have an image with a splash screen in the resource folder with dimensions 2208 X 2208, but based on docs should be 2732 X 2732

+14
source

Try it,

Check the config.xml file and delete all landscape image entries in this file and re-create your project.

Put this line in config.xml

<preference name="orientation" value="portrait" />
0

Source: https://habr.com/ru/post/1017281/


All Articles