iPad launch images

hi,

I noticed that creating a new project (using cocos new) will setup an iOS project with launch images for iPhones, but not for iPad. So, booting the new app on iPad gives a black launch image.

But how to add the iPad launch images? Adding what looks like the correct images to the UILaunchImages is ignored by iOS? Seems odd?

So, I’d imagine the following would work, but it doesn’t -

	<dict>
		<key>UILaunchImageMinimumOSVersion</key>
		<string>8.0</string>
		<key>UILaunchImageName</key>
		<string>Default~ipad</string>
		<key>UILaunchImageOrientation</key>
		<string>Landscape</string>
		<key>UILaunchImageSize</key>
		<string>{1024, 768}</string>
	</dict>

Any tips on how to make the iPad launch images display, too?

thanks