Having just discovered how to have our app icon show up during an OTA install I have learned that it is too fuzzy and we need a higher resolution icon. Find attached a version of the .plist file we are using. So far my research has turned up next to nothing and trying to add an "Icon57x57@2x.png" didn't work either. Is there a special key I need to add?
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>http://downloadURI/app.ipa</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>http://downloadURI/Icon57x57.png</string>
</dict>
</array>
<!-- metadata omitted for brevity sake -->
</array>
</dict>
</plist>