skip to Main Content

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 have an Asset from the beginning of the project (it was a Template).
  • The bundle key is in the info.plist.
  • The value of the key is the same that the name of the catalog.
  • I have the asset selected in building settings.
  • I have the Target Membership checked.

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

2

Answers


  1. Chosen as BEST ANSWER

    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.


  2. 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search