Last active
December 12, 2019 01:14
-
-
Save pedrommcarrasco/7ea615cf3755d3d42df4357a5e44721a to your computer and use it in GitHub Desktop.
How To Have Multiple Icons
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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