Has anyone come across this error when uploading to iTunesConnect. Upload precess gets to \"Verifying assets with iTunes store\" the I get the following error:
I've found the offending images with the @fancy steps but I couldn't change the color profile of my images with the above solutions.
I've tried with ColorSync, Preview, and I was unable to change the color profile of the offending images.
Finally I could change the color profile using convert command.
convert my_image.png -profile /path/to/AdobeRGB1998.icc -profile /path/to/sRGB_v4_ICC_preference_displayclass.icc my_image.png
After this, the appropiated color profile (sRGB...) was shown on Finder > File > Get Info and finally I was able to upload my app using Application Loader.
If you want to try this method:
1) Download ImageMagick using brew:
brew update
brew install imagemagick --with-little-cms --with-little-cms2
2) Download the color profiles:
3) Execute the following command:
convert input_image_name.ext -profile /path/to/AdobeRGB1998.icc -profile /path/to/sRGB_v4_ICC_preference_displayclass.icc output_image_name.ext
Was able to resolved using the ff steps:
If you need to resolve the issue on temporary basis just increase its minimum development target to iOS 9.0 and this issue will be resolved.
Inspired by Ignacio, I have been able to convert all the AdobeRGB1998 images to sRGB images with the following scripts
Install imagemagick
brew update
brew install imagemagick --with-little-cms --with-little-cms2
Find images and convert them to sRGB profile
cd path>to>Images.xcassets>folder
find . -name '*.png' -exec convert "{}" \
-profile "/System/Library/ColorSync/Profiles/AdobeRGB1998.icc" \
-profile "/System/Library/ColorSync/Profiles/sRGB Profile.icc" \
"{}" \;
If you don't have AdobeRGB1988.icc on you mac
Consider downloading it here AdobeRGB1998 https://www.adobe.com/support/downloads/iccprofiles/iccprofiles_mac.html https://www.adobe.com/digitalimag/adobergb.html
because, it needs to be changed to 8bit sRGB
Also Do The Following As An Addition To What I Have Posted Earlier
This Step Is Applied For All Photos
Open Each Or All Photos in Preview App
Click On Tools > Adjust Size > Then set dpi to 72
And Tools > Assign Profile > Then Select Generic RGB Profile