Software⏱️ 2 min read📅 2026-05-31

How to Fix: Missing CFBundleIconName in Xcode9 iOS11 app release

Missing CFBundleIconName in Xcode9 iOS11 app release

Quick Answer: Ensure the Info.plist file contains a valid value for CFBundleIconName, as it is required for iOS 11 apps.

The 'Missing CFBundleIconName' issue in Xcode 9 for iOS 11 app release can be resolved by adding the required Info.plist value.

⚠️ Common Causes

  • Incorrect or missing CFBundleIconName value in the Info.plist file.

🛠️ Step-by-Step Verified Fixes

Method 1: Update Info.plist File

  1. Step 1: Open the project in Xcode and navigate to the 'Info' section of the target.
  2. Step 2: Click on the '+' icon next to 'Bundle Identifier' and add the bundle identifier from your app's Info.plist file.
  3. Step 3: Add a new key called 'CFBundleIconName' with the desired icon name as its value.

Method 2: Use Xcode's Auto-Rebuild Feature

  1. Step 1: Go to 'Product' > 'Archive' in the top menu bar.
  2. Step 2: Select the archived product and click on the 'Rebuild' button next to it.
  3. Step 3: Wait for Xcode to rebuild the project and update the Info.plist file with the correct CFBundleIconName value.

🎯 Final Words

By following these steps, you should be able to resolve the 'Missing CFBundleIconName' issue in your Xcode 9 project for iOS 11 release.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions