Titanium 如何在钛移动应用程序中设置应用程序图标?

Titanium 如何在钛移动应用程序中设置应用程序图标?,titanium,titanium-mobile,Titanium,Titanium Mobile,我使用钛平台开发了通用应用程序。 但我无法设置ipad应用程序图标appicon-72.png 你能告诉我如何解决这个问题吗 谢谢更好的方法是在项目的根目录中创建info.plist文件。您需要添加: <key>CFBundleIconFiles</key> <array> <string>appicon.png</string> <string>appicon@2x.png</

我使用钛平台开发了通用应用程序。 但我无法设置ipad应用程序图标appicon-72.png

你能告诉我如何解决这个问题吗


谢谢

更好的方法是在项目的根目录中创建info.plist文件。您需要添加:

<key>CFBundleIconFiles</key>
    <array>
        <string>appicon.png</string>
        <string>appicon@2x.png</string>
        <string>appicon-72.png</string>
    </array> 
cfbundleconfiles

info.plist文件现在将在构建过程中用于分发到appstore,不同的图标将在二进制文件中正确使用