Skip to content

mwcs01/set-alternate-icon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

This shows how to setup the AlternateIcon for iOS 10.3 using Swift 4.0.

The key thing that you need make it happen is the changes info.plist.

#!xml

 <key>CFBundleIcons</key>
    <dict>
        <key>CFBundleAlternateIcons</key>
        <dict>
            <key>Test1</key>
            <dict>
                <key>CFBundleIconFiles</key>
                <array>
                    <string>Test1</string>
                </array>
                <key>UIPrerenderedIcon</key>
                <false/>
            </dict>
            <key>Test2</key>
            <dict>
                <key>CFBundleIconFiles</key>
                <array>
                    <string>Test2</string>
                </array>
            </dict>
        </dict>
        <key>CFBundlePrimaryIcon</key>
        <dict>
            <key>CFBundleIconFiles</key>
            <array>
                <string>AppIcon60x60</string>
            </array>
        </dict>
    </dict>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages