diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2014-06-13 01:08:06 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2014-06-13 01:15:12 -0700 |
commit | cd701a7b2beb7bf3e60047c65c8445df12e30d09 (patch) | |
tree | 85d0f6cd126323ce20386f7008ebd31d818aea7f /MobileCydia.app | |
parent | 33e987da1f8f989b713c1418b869d1694af4a163 (diff) |
iOS 4 and iOS 7 differ their required icon syntax.
Diffstat (limited to 'MobileCydia.app')
-rw-r--r-- | MobileCydia.app/Info.plist | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/MobileCydia.app/Info.plist b/MobileCydia.app/Info.plist index 5f1e2bc..35392da 100644 --- a/MobileCydia.app/Info.plist +++ b/MobileCydia.app/Info.plist @@ -78,20 +78,30 @@ <key>CFBundleIconFiles</key> <array> + <!-- iOS 6 iPhone (home) [59x60] --> <string>icon.png</string> - <string>icon-72.png</string> <string>icon@2x.png</string> - <string>Icon-60.png</string> - <string>Icon-60@2x.png</string> - <string>Icon-76.png</string> - <string>Icon-76@2x.png</string> + <!-- iOS 6 iPad (home) [74x76] --> + <string>icon-72.png</string> + <string>icon-72@2x.png</string> + + <!-- iOS 7 iPhone (home) [60x60] --> + <string>Icon-60</string> + + <!-- iOS 7 iPad (home) [76x76] --> + <string>Icon-76</string> + + <!-- iOS 7 (spotlight) [40x40] --> + <string>Icon-Small-40</string> + <!-- iOS 6 iPhone (spotlight) [29x29] --> <string>Icon-Small.png</string> <string>Icon-Small@2x.png</string> - <string>Icon-Small-40.png</string> + <!-- iOS 6 iPad (spotlight) [50x50] --> <string>Icon-Small-50.png</string> + <string>Icon-Small-50@2x.png</string> </array> |