Last active
July 22, 2020 11:42
-
-
Save pedrommcarrasco/19ade32e54e8870ac9988e827099fcbc to your computer and use it in GitHub Desktop.
How To Have Multiple Icons (iPad)
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~ipad</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