How do i put an icon in SoftwareAssets/SoftwareAsset(MZItmspSoftwareAssetPackage)

Yes, you need to upgrade to 2189a.  Make sure to get the “a” build.  Apple changed the requirements.

Okay…

it will not affect my code?

do I have to make changes in my original app/code?

where do I get this new 2189a?

Rob: I have the icons fine – I use this link

http://icon.angrymarmot.org/index.html#ec96f83fd125476b230c


I compare that with the link you game me – all icons are the same.

—QUESTION----

I have this

plist =     {       UIApplicationExitsOnSuspend = false,       UIPrerenderedIcon = true,       UIStatusBarHidden = true     },

how exactly I include the – CFBundleIconFile = {  }

-------Like this?—

  plist =     {       UIApplicationExitsOnSuspend = false,       UIPrerenderedIcon = true,       UIStatusBarHidden = true     },     {          CFBundleIconFiles = {           "Icon.png",           "Icon@2x.png },

---------or like this?

  plist =     {       UIApplicationExitsOnSuspend = false,       UIPrerenderedIcon = true,       UIStatusBarHidden = true   CFBundleIconFiles = {           "Icon.png",           "Icon@2x.png },     },  

-------------or another way?

would you please let me know exactly how is the build.settings

I post mine above…

The second way.  If you look at any of the Corona SDK/SampleCode/… apps you will see how it’s structured.

Rob

As for changing your code.  I’m not going to say you don’t have to change your code, but it should be minimal.  We’ve fixed a lot of bugs between 2100 and 2189a and you could be expecting one of these bugs to actually work work you and we’ve changed the behavior or you’ve done some work around to a bug that you no longer need.  You should run a full battery of tests when you jump a major build like that.

https://developer.coronalabs.com/downloads/corona-sdk

That should get you 2189a.

Rob