Skip to content

Instantly share code, notes, and snippets.

@jauntybrain
Last active September 9, 2023 04:23
Show Gist options
  • Save jauntybrain/cb548d06df82ff307a18c4ad7810e7d4 to your computer and use it in GitHub Desktop.
Save jauntybrain/cb548d06df82ff307a18c4ad7810e7d4 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTDPLIST1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- ...the rest of info.plist -->
<key>CFBundleIcons</key>
<dict>
<!-- Default app icon -->
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>black</string>
</array>
<key>UIPrerenderedIcon</key>
<false/>
</dict>
<key>CFBundleAlternateIcons</key>
<dict>
<!-- First custom icon - Black -->
<key>black</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>black</string>
</array>
<key>UIPrerenderedIcon</key>
<false/>
</dict>
<!-- Second custom icon - Gradient -->
<key>gradient</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>gradient</string>
</array>
<key>UIPrerenderedIcon</key>
<false/>
</dict>
<!-- Third custom icon - Galaxy -->
<key>galaxy</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>galaxy</string>
</array>
<key>UIPrerenderedIcon</key>
<false/>
</dict>
</dict>
</dict>
<!-- ...the rest of info.plist -->
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment