The following warning keeps arising in my Xamarin cross platform PCL project:
iccp:Not recognizing known sRGB profile that has been edited
What should I do ?
The following warning keeps arising in my Xamarin cross platform PCL project:
iccp:Not recognizing known sRGB profile that has been edited
What should I do ?
I found a workaround that may help.
I downloaded the ImageOptim software: https://imageoptim.com/ (Free)
and went to the folder Xamarin/Android.Support.v7.AppCompat/21.0.3/embedded and drag the images into the imageoptim and it deleted the metada.
And that fixed.
If you have image magick installed http://www.imagemagick.org/script/command-line-processing.php
find . -name "*.png" -print -exec convert "{}" "{}" ";"
cleaned up the files, and made them smaller in the process.
What solved my problem is to remove the doubted one image(Which is large in size & it's been store in all Drawable folders of my app module.)
I have tried by Changing build tools , removing AppCompat lib.
Also Check that whether any of your image is not opening in Android Editor by double clicking on the Image from drawable folder.
If this load problem occurs, It means you have to remove this image from all folders and try by ReAdding it after Renaming the same image.
Or there's is an accepted answers available if it can help you.
Which will help you Optimize your image in all neccessary manner.
had the same problem. trying to remove and re-add the same images showed in the console that another file had an invalid name (with "-" in the name). Fixing the other file's name, solved my issue.