Include bundle icons in Info.plist

This commit is contained in:
Michael Zanetti 2020-04-02 19:45:17 +02:00
parent 8f480159cd
commit cbd8af7a6b

View File

@ -1,7 +1,7 @@
<?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>
<dict>
<key>CFBundleDisplayName</key>
<string>nymea:app</string>
<key>CFBundleExecutable</key>
@ -43,5 +43,35 @@
<false/>
<key>XSAppIconAssets</key>
<string>AppIcons.xcassets/AppIcon.appiconset</string>
</dict>
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>AppIcon29x29.png</string>
<string>AppIcon29x29@2x.png</string>
<string>AppIcon40x40@2x.png</string>
<string>AppIcon60x60@2x.png</string>
</array>
</dict>
</dict>
<key>CFBundleIcons~ipad</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>AppIcon29x29.png</string>
<string>AppIcon29x29@2x.png</string>
<string>AppIcon40x40.png</string>
<string>AppIcon40x40@2x.png</string>
<string>AppIcon60x60@2x.png</string>
<string>AppIcon76x76.png</string>
<string>AppIcon76x76@2x.png</string>
<string>AppIcon83.5x83.5@2x.png</string>
</array>
</dict>
</dict>
</dict>
</plist>