iPad Pro 11 (3 gen) missing Launch Images (#4584)

For now there is no correct launch images in game.project for iPad Pro 11 (3 gen) with screen resolution 2388x1668.

So, on this device game will be not fullscreen.
There is also no launch images for iPhone XR (828x1792), but it can correct downscale another launch images.

Possibly, there is two workarounds.
First one is storyboards (didn’t test yet)
Second one (I use it) is place launch images in ios bundle folder (bundle/ios/Default-Landscape-1194h@2x.png and bundle/ios/Default-Portrait-1194h@2x.png)
And add to your custom info.plist:

<dict>
    <key>UILaunchImageMinimumOSVersion</key>
    <string>8.0</string>
    <key>UILaunchImageName</key>
    <string>Default-Portrait-1194h</string>
    <key>UILaunchImageOrientation</key>
    <string>Portrait</string>
    <key>UILaunchImageSize</key>
    <string>{834, 1194}</string>
</dict>
<dict>
    <key>UILaunchImageMinimumOSVersion</key>
    <string>8.0</string>
    <key>UILaunchImageName</key>
    <string>Default-Landscape-1194h</string>
    <key>UILaunchImageOrientation</key>
    <string>Landscape</string>
    <key>UILaunchImageSize</key>
    <string>{1194, 834}</string>
</dict>
1 Like

Thank you for pointing this out. I’ve added a ticket to track this: 4584. I’ll try to get it included in 1.2.165

This will get included in 1.2.165.

iPad Pro 11, iPhone XR and XS Max will be covered by the fix.

3 Likes