I have had this particular problem in the last couple of days.
The iPad icon did not appear in Info.plist and continued to give the warning you are receiving right now.
My fix was to manually add the Icon-83.5@2x.png icon to the resources folder (as Prashant pointed out) and add it to Info.plist :
<key>CFBundleIconFiles</key> <array> <string>Icon-40.png</string> <string> Icon-40@2x.png </string> <string> Icon-40@3x.png </string> <string> Icon-60@2x.png </string> <string> Icon-60@3x.png </string> <string>Icon-76.png</string> <string> Icon-76@2x.png </string> <string> Icon-83.5@2x.png </string> <string>Icon-Small-40.png</string> <string> Icon-Small-40@2x.png </string> <string>Icon-Small.png</string> <string> Icon-Small@2x.png </string> <string> Icon-Small@3x.png </string> </array>
I worked with the Asset Catalog , but I could not get it to work with the iPad Pro icon.
source share