Missing Info.plist value - A value for the Info.plist key 'CFBundleIconName' is missing

When submitting my app to the App Store I receive this email:

TMS-90713: Missing Info.plist value - A value for the Info.plist key 'CFBundleIconName' is missing in the bundle '...'. Apps built with iOS 11 or later SDK must supply app icons in an asset catalog and must also provide a value for this Info.plist key. For more information see http://help.apple.com/xcode/mac/current/#/dev10510b1f7.

I've tried everything in this post: Missing CFBundleIconName in Xcode9 iOS11 app release

I'm using Xcode 13.1 and MacBook Air M1 2020

enter image description here

enter image description here

enter image description here enter image description here

Upvotes: 16

Views: 15871

Answers (2)

SHIKHIL S
SHIKHIL S

Reputation: 91

I tried most of the answers like

But none of the got worked, So what I did was, I just upgraded the react-native version from 0.68.1 -> 0.68.2 and also created a new react-native app using the same project name and copied the ios folder blindly. This fixed my issue and later I applied the custom changes from the previous code.

During the copy, I found the following changes in ios/<project_name>.xcodeproj/project.pbxproj file. These changes made the fix for me

ios/<project_name>.xcodeproj/project.pbxproj

ios/<project_name>.xcodeproj/project.pbxproj

Upvotes: 0

As matt mentioned in comments:

In Xcode 13 this is configured with a build setting, not by editing the Info.plist file directly.

I had it set in both locations due to the instructions in this post: Missing CFBundleIconName in Xcode9 iOS11 app release

I removed the info.plist key 'CFBundleIconName' and keep only the Build Settings and I could upload the archive with out any error.

Upvotes: 10

Related Questions