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>