0
votes

I have developed universal application using Titanium platform. But I am not able to set ipad application icon appicon-72.png.

Can you please advice me how to solve this issue.

Thanks

1

1 Answers

2
votes

A better way to do it is to create an info.plist file in the root of your project. You need to add:

<key>CFBundleIconFiles</key>
    <array>
        <string>appicon.png</string>
        <string>[email protected]</string>
        <string>appicon-72.png</string>
    </array> 

for info.plist Creation try this

The info.plist file will now be used during building for distribution to appstore and the different icons will be correctly used in the binary.