iosxcodexcasset

Default Icon on iPad - for an iPhone app


When I launch my iPhone app on the iPad its' icon stays the default iOS icon. In my AppIcon in AssetCatalog.xcassets I added icons for iOS 7-11 (76pt 1x and 2x). Still no change.

Note the app is an iPhone app and not universal.

Any idea what could be the problem?


Solution

  • In info.plist make sure you don't have the following keys.

    <key>CFBundleIcons</key>
    <dict/>
    <key>CFBundleIcons~ipad</key>
    <dict/>
    

    enter image description here