SOLVED by WilliamDocherty here
To fix icons recognision with names provided by Epics use this:
--------
It was ok with previous UDK version. Once I've updated UDK I've found that I see "iOS6 144x144" size icon on my iPad4 instead of 152x152 "iOS7 size"
I've checked that .plist overrides are applied in binary, icon is located in binary.
To fix icons recognision with names provided by Epics use this:
Code:
<key>CFBundleIcons</key> <dict> <key>CFBundlePrimaryIcon</key> <dict> <key>CFBundleIconFiles</key> <array> <string>Icon29.png</string> <string>Icon29@2x.png</string> <string>Icon40.png</string> <string>Icon40@2x.png</string> <string>Icon50.png</string> <string>Icon50@2x.png</string> <string>Icon57.png</string> <string>Icon57@2x.png</string> <string>Icon60.png</string> <string>Icon60@2x.png</string> <string>Icon72.png</string> <string>Icon72@2x.png</string> <string>Icon76.png</string> <string>Icon76@2x.png</string> </array> </dict> </dict>
It was ok with previous UDK version. Once I've updated UDK I've found that I see "iOS6 144x144" size icon on my iPad4 instead of 152x152 "iOS7 size"
I've checked that .plist overrides are applied in binary, icon is located in binary.
Comment