skip to Main Content

I wanted to make an icon to my application. I want to install an application but I’m getting errors like this. Can you help me. Although I have edited my info.flist file, I am getting many errors. That’s why I couldn’t send my app to the app store.

Prpblemsenter image description here:
enter image description here
App Store Connect Operation Error ERROR ITMS-90713: “ Lack of Info.plist value. ‘CFBundleIconName’ is missing a value for Info.plist key ‘com.arslantas.erc’ in the package. IOS 11 or higher SDK-related apps implementation in a catalog it must provide symbols and provide a value for this Info.plist key. See http://help.apple.com/ for more information xcode / mac / current / # / dev10510b1f7. "

App Store Connect Operation Error ERROR ITMS-90022: "Required icon file missing. The package does not contain exactly ‘120×120’ pixel app icon for iPhone / iPod Touch .png for iOS versions> = 10.0. Icon for iOS versions, location catalog Other May be required in the package. Make sure it contains the entries required for info.plist. See https://developer.apple.com/documentation/bundleresources/information_property_list/user_interface"App Store Connect Operation Error ERROR ITMS-90023: "Package icon is missing. .png format for iOS versions of iPad Pro, does not include an app icon exactly ‘167×167’ pixels for iPad To support older operating systems, including icon maker.plist in the next package from a catalog See https://developer.apple Make sure that .com / documentation / bundleresources / information_property_list / user_interface contains appropriate entries for App St referencing the file. ore Connect Operation Error ERROR ITMS-90023: "Required file missing .png for iOS> = 10.0 versions yet does not contain an exactly ‘152×152’ pixel icon app for iPad. To support older operating systems, it is iconized in the package outside of a catalog. Make sure that the info.plist contains entries referencing the files. See https://developer.apple.com/documentation/bundleresources/information_property_list/user_interface "App Store Connect Process Error ERROR ITMS-90704:" Missing Application Icon. PNG format 1024 An app icon of x1024 pixels must be added to the Asset Catalog of apps created for iOS, iPadOS, or watchOS. Without this icon, it cannot be submitted for review

2

Answers


  1. To verify that your app icon is configured correctly you should do next:

    1. Check Assets.xcassets file is embeded to your target.

    2. Verify that AppIcon is present in Assets.xcassets and has all needed icons:

    enter image description here

    1. Set AppIcon as a source in "App Icons and Launch Images"

    enter image description here

    Login or Signup to reply.
  2. In info.plist add below entry

    <key>CFBundleIconName</key>
    <string>AppIcon</string>
    

    enter image description here

    Make sure your Images.xcassets has AppIcon.

    Here is Sample Images.xcassets : https://app.box.com/s/wv11yqi7dr6vb3nweq1d0evqyunp034c

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