tags:

views:

56

answers:

1

I tried adding a Launch image key to myappname-info.plist with the value Test and a Test.png in the Resources folder but it doesn't seem to work.

A: 

I don't think it's possible to change the name of the image. If you're trying to use a different image every time the app gets launched (like some of the built-in apps) it's not possible. If you're trying to use a different image for different versions of your app, you can use Targets.

What's the reason you want to do this?

nevan
At the moment, I'm developing a web app using PhoneGap for both iPad and iPhone. However, I've come across an issue: when the app loads on an iPad it loads both the Default-Landscape.png and the Default.png (like 2 splash screens in succession rather than one). I've tried to find out how to stop this happening but I can't find any answers(including on the PhoneGap site and on SO). So I figured that if I changed the name of the iPhone image to something else the iPad app wouldn't load it.
Gazzer