When I try to upload my app to the App Store, I get an email saying “A value for the info.plist key ‘CFBundleIconName’ is missing”
I followed these instructions
https://docs.coronalabs.com/guide/distribution/xcAssets/index.html
My icons are located in my app’s root directory > Images.xcassets > AppIcon.appiconset
and are all named and sized as required.
My build settings file:
iphone = { xcassets = "Images.xcassets", plist = { NSAppTransportSecurity = { NSAllowsArbitraryLoads=true }, UILaunchStoryboardName = "LaunchScreen", CFBundleIconFiles = { "Images.xcassets/AppIcon.appiconset/Icon-40.png", "Images.xcassets/AppIcon.appiconset/Icon-58.png", "Images.xcassets/AppIcon.appiconset/Icon-76.png", "Images.xcassets/AppIcon.appiconset/Icon-80.png", "Images.xcassets/AppIcon.appiconset/Icon-87.png", "Images.xcassets/AppIcon.appiconset/Icon-120.png", "Images.xcassets/AppIcon.appiconset/Icon-152.png", "Images.xcassets/AppIcon.appiconset/Icon-167.png", "Images.xcassets/AppIcon.appiconset/Icon-180.png", "Images.xcassets/AppIcon.appiconset/Icon-1024.png"}, }, },
I tried removing the CFBundleIconFiles table but that didn’t fix it.