Search code examples
androidscreenshotimage-uploadingpublishing

Uploading screenshots error to the developer console


I get the following error when trying to upload an image as a screenshot to my developer console:

"You need to check that your screenshot image is a valid image."

  1. I took a screenshot from my cell and uploaded it as a screenshot to the developer console and it worked.
  2. Then I just added a line on top of the image using paint.
  3. Tried to upload the modified image to the developer console but it failed.

My images are480wx800h PNG formatted images so it should be okay. (both the original and the modified bitmap).

Could any1 tell me how to solve this? I want to upload a sample image from my app and add some instructions written on top of the image. But i can't do it.


Solution

  • Solved:

    apparently when you save a PNG using paint it changes the bit depth to 32 instead of 24 and it adds transparency to the image which is forbidden by the Google play rules. So saving it as JPEG solved the problem