Skip to content

Instantly share code, notes, and snippets.

@pedrommcarrasco
Last active December 12, 2019 01:14
Show Gist options
  • Save pedrommcarrasco/7ea615cf3755d3d42df4357a5e44721a to your computer and use it in GitHub Desktop.
Save pedrommcarrasco/7ea615cf3755d3d42df4357a5e44721a to your computer and use it in GitHub Desktop.
How To Have Multiple Icons
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>default</string>
</array>
<key>UIPrerenderedIcon</key>
<false/>
</dict>
<key>CFBundleAlternateIcons</key>
<dict>
<key>light</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>light</string>
</array>
<key>UIPrerenderedIcon</key>
<false/>
</dict>
<key>dark</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>dark</string>
</array>
<key>UIPrerenderedIcon</key>
<false/>
</dict>
</dict>
</dict>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment